Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

First here's the ActiveMQ approach; you send to .

  • send to activemq:topic:VirtualTopic.Orders
  • for consumer A consume from activemq:Consumer.A.VirtualTopic.Orders

When using another message broker use the following pattern

  • send to jms:Orders
  • Code Block
    from("jms:Orders").to("jms:Consumer.A", "jms:Consumer.B", ...); 
  • for consumer A consume from jms:Consumer.A