Raven.ManagedStorage.Degenerate.PersistentDictionary.GetCommandsToCommit C# (CSharp) Method

GetCommandsToCommit() private method

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

            return cmds;
        }