How can we synchronize the processes in a camel route? I want to execute all
the processes defined in a camel route to get executed in a single shot.

In the below camel route, I want to execute the processes
"msgConvertorSingle" and "smsBO" get executed in a single unit of work. I
dont want a different thread executing the same when one is doing its job.
How can we achieve this?

 <camel:route id="SinglelineRouteConvertor">
            <camel:from uri="direct:msgConvertorSingle" />
            <camel:process ref="msgConvertorSingle" />
            <camel:process ref="smsBO" />
            <camel:log message="Saved Message Order is---->${body}" />
        </camel:route>



--
View this message in context: 
http://camel.465427.n5.nabble.com/synchronizing-multiple-processes-in-a-camel-route-tp5766068.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to