Apache.NMS.ActiveMQ.Transactions.RecoveryLoggerHarness.LogRecovered C# (CSharp) Method

LogRecovered() public method

public LogRecovered ( XATransactionId xid ) : void
xid Apache.NMS.ActiveMQ.Commands.XATransactionId
return void
        public void LogRecovered(XATransactionId xid)
        {
            if (this.PreLogRecoverdEvent != null)
            {
                this.PreLogRecoverdEvent(xid);
            }

            this.containedLogger.LogRecovered(xid);

            if (this.PostLogRecoverdEvent != null)
            {
                this.PostLogRecoverdEvent(xid);
            }
        }