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

CompleteCommit() private méthode

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

            ApplyCommands(cmds);
            ClearTransactionInMemoryData(txId);
        }