Domanda

For an Exchange-to-Exchange binding definintion

public class RabbitRecieveTest implements MessageListener {
@Override
    public void onMessage(Message message) {
    String firstExchange = message.getMessageProperties().getReceivedExchange();
}
}

returns the first exchange name.

Scenario:

Message published to firstExchange <---binding--->secondExchange<---binding---->someQueue<--- listener

I would like to get the name of the secondExchange. Is there a way?

È stato utile?

Soluzione

No, it is not possible to get this information.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top