Robert Thullner pisze:
Sorry, for writing this twice, I pressed the send button to early in the
previous mail.
I am sorry, but I also cannot see such a method after the aggregator
expression??
from("hospital:camel.hospital.nurse.aggregator.doctor")
.aggregator(header("JMSCorrelationID"), new MyAggregationStrategy(context))
.to("hospital:camel.hospital.nurse.aggregator.doctor.receiver")
1. Have you looked at that test in trunk?
2. I'm talking about 1.3-SNAPSHOT
3. Use either:
aggregator(...).completedPredicate(predicate) or
AggregatorType a = from(...).aggregator(....)...;
a.setCompletePredicate(predicate);
Przemek