Although there are a number of ways to fork routes (Recipient List, Content
Based Router) there doesn't seem to be any way to join them back together
again.
The naive approach of taking two routes:
from("queue:a").filter(header("foo").isEqualTo("bar")).to("queue:b");
from("queue:a").filter(header("bar").isEqualTo("cheese")).to("queue:c");
and putting then together like this:
from("queue:b").to("queue:d");
from("queue:c").to("queue:d");
does not work.
Am I missing something?
--
View this message in context:
http://www.nabble.com/-camel--Joining-Routes-tf3603395s2354.html#a10066990
Sent from the ActiveMQ - Dev mailing list archive at Nabble.com.