Since we're on a major migration process of this website, some component documents here are out of sync right now. In the meantime you may want to look at the early version of the new website
https://camel.apache.org/staging/
We would very much like to receive any feedback on the new site, please join the discussion on the Camel user mailing list.
How to send the same message to multiple endpointsWhen you need to send the same message to multiple endpoints then you should use Multicast. In the sample below we consume messages from the activemq queue from("activemq:queue:foo").multicast().to("seda:foo", "seda:bar"); Pipeline is default in Camel If you have a route such as: from("activemq:queue:foo").to("seda:foo", "seda:bar"); It is default a pipeline in Camel (that is the opposite to Multicast). In the above example using pipes and filters then the result from seda:foo is sent to seda:bar, ie. its not the same message sent to multiple destinations, but a sent through a chain (the pipes and the filters). |