Raven.ManagedStorage.Degenerate.PersistentDictionary.GetCommandsToCommit C# (CSharp) Méthode

GetCommandsToCommit() private méthode

private GetCommandsToCommit ( System.Guid txId ) : List
txId System.Guid
Résultat List
        internal List<Command> GetCommandsToCommit(Guid txId)
        {
            List<Command> cmds;
            if (operationsInTransactions.TryGetValue(txId, out cmds) == false)
                return null;

            return cmds;
        }