0

I am reading data from salesforce via streaming API. The value I retrieved from salesforce is in the following format({Name:abcd, id:21221321}).

I like to store the above mentioned value in rabbitMQ using AMQP connector in Mule and I need to retrieve only the 'id' value from rabbitmq using Mule.

Is it possible

Thanks in advance

4

1 回答 1

0

为此,您可以使用交换器路由键,例如创建具有特定名称的交换器并利用 id 作为路由键来引导消息。与您的示例值保持一致:当您的消费者使用 abcd 绑定到交换时,它可以检索 id 为 21221321 的消息。

查看 RabbitMQ 的路由教程以获得更深入的解释。

还有一个不久前被问到的另一个问题涉及类似的问题:RabbitMQ——从队列中选择性地检索消息

于 2014-05-14T13:37:09.660 回答