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
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
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”).
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.