Apache.NMS.ActiveMQ.Transactions.RecoveryLoggerHarness.Purge C# (CSharp) 메소드

Purge() 공개 메소드

public Purge ( ) : void
리턴 void
        public void Purge()
        {
            if (this.PrePurgeEvent != null)
            {
                this.PrePurgeEvent();
            }

            this.containedLogger.Purge();

            if (this.PostPurgeEvent != null)
            {
                this.PostPurgeEvent();
            }
        }