Re: Running camel Route in multiple threads
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
Running camel Route in multiple threads
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