Code correction:
*Code in my inbound route:*
/from(listeningEndpoint)
.streamCaching()
.recipientList()
.method(router, RecipientListRouter.METHOD_NAME) // Routes
to a list of direct internalEndpoints
.aggregationStrategy(synchronousAggregationSt
Found the answer finally and posted on Stackoverflow
http://stackoverflow.com/a/31738832/1180885
--
View this message in context:
http://camel.465427.n5.nabble.com/Apache-Camel-Splitter-Threadpool-and-JMS-tp5770128p5770183.html
Sent from the Camel - Users mailing list archive at Nabble.com.
Hello all,
I am using CAMEL 2.15.1 in order to listen to an inbound endpoint, route to
a couple of direct (in order to be sync) outbound endpoints aggregating the
responses with following implementation:
Code from my inbound route:
def = def
.streamCaching()
.recipientList()
Thanks so much Claus!!! Just a few questions:
- I assume the last piece is:
// continue routing here
part = part.xxx
And that there is nothing to do to finalize the ProcessorDefinition object,
just set it as you show?
Anyways, here's what I ended up with, based on your directoins: