ack abstract method

void ack(
  1. int deliveryTag, {
  2. bool multiple = false,
})

Acknowledge a deliveryTag. The multiple flag can be set to true to notify the server that the client ack-ed all pending messages up to deliveryTag.

Generally you should not use this method directly but rather use the methods in AmqpMessage to handle acks

Implementation

void ack(int deliveryTag, {bool multiple = false});