0
我正在使用rabbitMQ模塊發送和接收消息。Waitinga在Play with rabbitMQ的消息
有沒有人知道如何發送消息,然後再繼續等待另一條消息。
我需要做這樣的事情
public static void index(){
RabbitMQPublisher.publish("queue1", message1);
....
//here i need to wait for message to arrive on queue2
render(message2);
}