Hi,

I have two routes

<camel:route id="route1">

 <camel:from uri="timer://foo?period=10000"></camel:from>

<camel:bean ref="bean1" method="method1"></camel:bean>

</camel:route>


<camel:route id="route2">

 <camel:from uri="timer://foo?period=10000"></camel:from>

<camel:bean ref="bean2" method="method2"></camel:bean>

</camel:route>


in bean1 and bean2, i poll messages from different JMS queues. When i start
the server, polling consumer in bean1 waits (and blocks) for messages to be
available in jms queue.

Is there any way i can run both routes in parallel?

Reply via email to