Reputation: 457
I want to use Reactor RabbitMQ for my existing RabbitMQ project with Spring boot(https://github.com/gotidhavalh/amqpdemo).
So I want to know how can I implement it and when any AMQP message is sent to any queue then how can I receive that AMQP message just like with @RabbitListner annotation in without Reactor case.
Upvotes: 0
Views: 421
Reputation: 174729
There is currently no support for @RabbitListener
with the reactive client.
Upvotes: 2