Hi all,
I would like to take a message containing a list of objects, split the list
into it's component objects, process them in parallel, aggregate the
modified objects back into a list.
I am using camel 2.8.0.
>From what I can see I need to use a route in the following form:
from("jms:queue:from")
.split(Expression, AggregationStrategy) // What goes here?
.parallelProcessing()
// Processing goes here
.end()
.to("direct:end");
I think I can write the aggregation strategy but I'm unsure how to split the
list in the Expression. All the example seems to be with splitting strings.
Ben
--
View this message in context:
http://camel.465427.n5.nabble.com/Splitting-processing-and-aggregating-a-list-tp5716013.html
Sent from the Camel - Users mailing list archive at Nabble.com.