Is it valid to concurrently process messages into an aggregator?
There is no mention of "aggregator" in Camel docs for parallel processing,
want to be sure.


<route id="aggregatorRoute">
      <from uri="seda:workBasket?concurrentConsumers=5" />
      <aggregate strategyRef="objectAggregator" completionSize="50">
        <correlationExpression>
          <constant>true</constant>
        </correlationExpression>
        <to uri="jpa:?entityType=java.util.ArrayList" />
      </aggregate>
    </route>



--
View this message in context: 
http://camel.465427.n5.nabble.com/Seda-concurrent-consumers-with-aggregator-tp5780029.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to