--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-users+unsubscribe@googlegroups.com.
To post to this group, send email to rabbitmq-users@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
STOMP uses a topic exchange internally, amq.topic by default. Would that beenough for your case or is your question really about using arbitrary exchanges?Because the latter is where the abstractions STOMP is built on do not alwaysmix well with those of AMQP 0-9-1, see http://www.rabbitmq.com/tutorials/amqp-concepts.html.
On Sat, Aug 6, 2016 at 4:42 AM, <michael...@gmx.net> wrote:
I would like to study RabbitMQ STOMP plugin usage with topic exchanges, based on the tutorial code (EmitLogTopic.java and ReceiveLogsTopic.java) on the page https://www.rabbitmq.com/tutorials/tutorial-five-java.html with STOMP, so that one of the Java programs would interact with a STOMP based counterpart. Is there already a unit test or some other example code for topic exchanges with the RabbitMQ STOMP plugin, so that I can see how the destination header for the STOMP frames (SUBSCRIBE and SEND) must look like for topic exchanges?
Based in the EmitLogTopic I concluded that this would be destination value in a SEND frame to the topic_logs exchange with routing keys "kern.critical":
SEND
destination:/exchange/topic_logs/kern.critical
...
and for subscribing:
SUBSCRIBE
destination:/exchange/topic_logs/#
or
destination:/exchange/topic_logs/kern.*
or
destination:/exchange/topic_logs/*.critical
or (multiple)
destination:/exchange/topic_logs/kern.* *.critical
Greetings,
Michael Justin
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-user...@googlegroups.com.
To post to this group, send email to rabbitm...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.