Basically when you start the camel route, camel will build up a processor chain to process the message, this processor chain is invoked from the “from” endpoint. As the camel timer component cannot fire the invocation in multiple threads at the same time, you need to take advantage of camel asyn API[1] and thread DSL[1] to let other thread keep doing the invocation of the process chains.
[1]http://camel.apache.org/async.html -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.com Blog: http://willemjiang.blogspot.com(http://willemjiang.blogspot.com/) (English) http://jnn.iteye.com(http://jnn.javaeye.com/) (Chinese) Twitter: willemjiang Weibo: 姜宁willem On January 29, 2014 at 9:21:17 PM, Tarun Kumar (agrawal.taru...@gmail.com) wrote: > > Hi, > > I want to run my camel route in multiple threads. > > > > > > > > Is there any way i can run same route in multiple threads. basically > same > route execute parallely in multiple threads. > > Thanks, > Tarun >