Re: Camel resequencer() is not working inside choice - java dsl

2015-04-28 Thread Henryk Konsek
the > followinf code ---from(“direct:A”).recipientList(...) --- concurrently > (mutiple threads) then will it maintain the same sequence. > > Your quick response is highly appreciated. > > > > -- > View this message in context: > http://camel.465427.n5.nabble.com/Camel-resequencer

Re: Camel resequencer() is not working inside choice - java dsl

2015-04-27 Thread Sumit
followinf code ---from(“direct:A”).recipientList(...) --- concurrently (mutiple threads) then will it maintain the same sequence. Your quick response is highly appreciated. -- View this message in context: http://camel.465427.n5.nabble.com/Camel-resequencer-is-not-working-inside-choice-java-dsl

Re: Camel resequencer() is not working inside choice - java dsl

2015-04-27 Thread Willem Jiang
When you use the resequencer(), you need to specify the to endpoint. The route can be changed to  from(...)  .choice()  .when(...)  .resequence(header(...)).stream().to(“direct:A”)  .endchoice()  .when(...)  .resequence(header(...)).stream().to(“direct:A”)  .endchoice()  .end()  from(“direct:A”).

Camel resequencer() is not working inside choice - java dsl

2015-04-27 Thread Sumit
context: http://camel.465427.n5.nabble.com/Camel-resequencer-is-not-working-inside-choice-java-dsl-tp5766390.html Sent from the Camel Development mailing list archive at Nabble.com.