Apache.NMS.ActiveMQ.Commands.ActiveMQMessage.Acknowledge C# (CSharp) 메소드

Acknowledge() 공개 메소드

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

            Acknowledger(this);
        }