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:
Can someone please help me with the equivalent way to do this with the RabbitTemplate?Code:channel.basicAck(delivery.getEnvelope().getDeliveryTag(), false)
Thanks!
--john


Reply With Quote