Hi, I am trying to make the following route work but it looks like aggregation is called before the Hazelcast SEDA component is done processing.
<camelContext id="camelContext" xmlns="http://camel.apache.org/schema/spring"> <template id="camelProducerTemplate" /> <route> <from uri="direct:start"/> <split strategyRef="responseAggregator"> <tokenize token="@"/> <to uri="hazelcast:seda:partsRequest"/> </split> <log message="Finished Aggregating: ${body}"/> </route> <route> <from uri="hazelcast:seda:partsRequest"/> <to uri="bean:requestExecutor?method=execute"/> </route> </camelContext> This is all running within a single Junit JVM and the bean "requestExcutor" gets called after the route finishes. The camelcontext works as expected if I just use the default SEDA component instead of the hazelcast one. What I am missing in the config to make the default splitter aggregator work withe hazelcast SEDA? Thanks -- View this message in context: http://camel.465427.n5.nabble.com/Aggregation-on-Hazelcast-SEDA-component-tp5745303.html Sent from the Camel - Users mailing list archive at Nabble.com.