I'm using Rabbitmq client v3.3.4 & it had getReplyQueue() method which I was using it to consume messages as below:
getChannel().basicConsume(getReplyQueue(), true, consumer);
Now, I upgraded my rabbitmq server to 3.4.3 & so I decided to upgrade java client library to v3.3.4 but I found that the getReplyQueue() method is no longer present in RabbitMQ Java client library.
How would I get the reply queue in this scenario?
Thanks!