I have a route which routs message between different beans:

.bean(a)
.bean(b)
.bean(c)
.bean(d)
.bean(e)

I am realizing that processing of beans b, c, d does not need to be
sequential, but can in fact be performed in parallel.  However, e, still
need to occur after all a,b,c,d, have been processed.

So, I am looking for something like:

.bean(a)
.parallel(b,c,d)
.bean(e)

What camel pattern should I look into in implementing the parallel part of
the above route?

Thanks.
-AP_ 



--
View this message in context: 
http://camel.465427.n5.nabble.com/Adding-some-parallelism-to-synchronous-route-tp5768703.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to