Apache.NMS.ActiveMQ.TransactionContext.AfterCommit C# (CSharp) 메소드

AfterCommit() 개인적인 메소드

private AfterCommit ( ) : void
리턴 void
        internal void AfterCommit()
        {
            try
            {
                lock(this.synchronizations.SyncRoot)
                {
                    foreach(ISynchronization synchronization in this.synchronizations)
                    {
                        synchronization.AfterCommit();
                    }
                }
            }
            finally
            {
                synchronizations.Clear();
            }
        }