Hello All,

I'm using the RabbitTemplate (via the Grails RabbitMQ plugin) and am subscribed to a queue with acknowledgeMode = MANUAL.

I'm trying to find the appropriate way to manually acknowledge the received message. Using the RabbitMQ SDK, I'd do something like:

Code:
channel.basicAck(delivery.getEnvelope().getDeliveryTag(), false)
Can someone please help me with the equivalent way to do this with the RabbitTemplate?

Thanks!

--john