correlationId and temporary queues in RPC model - AMQP
I was reading RPC-Model in AMQP with RabbitMQ. The tutorial creates a temporary queue and also correlationId . Temporary queues are unique, so why should we need correlationId? I'm a JMS guy, in JMS we do request/response in two ways: create temporary queue for each request/response create one response queue and use correlationId and message selector. can someone explain why do we need both temporary queue and correlationId in AMQP RPC model? It seems AMQP does not have something like message selector. Am I right? Correct, temporary queues are unique to the client making the RPC request. We