Apache.NMS.ActiveMQ.Commands.ActiveMQMessage.Acknowledge C# (CSharp) Method

Acknowledge() public method

public Acknowledge ( ) : void
return void
        public void Acknowledge()
        {
            if(null == Acknowledger)
            {
                throw new NMSException("No Acknowledger has been associated with this message: " + this);
            }

            Acknowledger(this);
        }