Raven.ManagedStorage.Degenerate.PersistentDictionary.GetCommandsToCommit C# (CSharp) 메소드

GetCommandsToCommit() 개인적인 메소드

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

            return cmds;
        }