Apache.NMS.ActiveMQ.TransactionContext.BeforeEnd C# (CSharp) Method

BeforeEnd() private method

private BeforeEnd ( ) : void
return void
        internal void BeforeEnd()
        {
            lock(this.synchronizations.SyncRoot)
            {
                foreach(ISynchronization synchronization in this.synchronizations)
                {
                    synchronization.BeforeEnd();
                }
            }
        }