I am using Camel 2.2 (rev 890454)

How is it possible to know if an exchange has exceeded the
maximumRedeliveries configured on the route by using aggregationStrategy and
if it hasn't how many redelivery have been attempted?

route sample:

from("direct:delivery.notification.test")
.onException(Exception.class).maximumRedeliveries(2).redeliverDelay(60L).handled(true).end()
.recipientList(header("recipientListHeader").tokenize(","))
.parallelProcessing().executorService(customThreadPoolExecutor)
.aggregationStrategy(new recipientAggregationStrategy())
.to("direct:chunk.completed");


-- 
View this message in context: 
http://old.nabble.com/recipientList-%2B-aggregationStrategy%2C-maximumRedeliveries-exceeded-tp26780214p26780214.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to