Carrot.InboundChannel.NegativeAcknowledge C# (CSharp) Method

NegativeAcknowledge() public method

public NegativeAcknowledge ( System.UInt64 deliveryTag, System.Boolean requeue ) : void
deliveryTag System.UInt64
requeue System.Boolean
return void
        public void NegativeAcknowledge(UInt64 deliveryTag, Boolean requeue)
        {
            _model.BasicNack(deliveryTag, false, requeue);
        }