org.apache.camel.processor.aggregate
Interface CompletionAwareAggregationStrategy

All Superinterfaces:
AggregationStrategy

public interface CompletionAwareAggregationStrategy
extends AggregationStrategy

A specialized AggregationStrategy which has callback when the aggregated Exchange is completed.

Version:

Method Summary
 void onCompletion(Exchange exchange)
          The aggregated Exchange has completed Important: This method must not throw any exceptions.
 
Methods inherited from interface org.apache.camel.processor.aggregate.AggregationStrategy
aggregate
 

Method Detail

onCompletion

void onCompletion(Exchange exchange)
The aggregated Exchange has completed Important: This method must not throw any exceptions.

Parameters:
exchange - the current aggregated exchange, or the original Exchange if no aggregation has been done before the completion occurred


Apache CAMEL