>From within a single Route configure() and consumer, is it possible to achieve >the following:
from("jms.A")...
from("jms.B")...
from("jms.C")...
and have all from's execute concurrently?
A bit more advanced, I need a route that can dynamically change the from piece
based on some configuration setting. ie...do a
from(senderList).blabla
and have a separate thread executing each sender...
Thanks...
