public interface AggregationStrategy
aggregate
method the oldExchange parameter is null. The reason is that we have not aggregated anything yet.
So its only the newExchange that has a value. Usually you just return the newExchange in this
situation. But you still have the power to decide what to do, for example you can do some alternation on the exchange
or remove some headers. And a more common use case is for instance to count some values from the body payload. That
could be to sum up a total amount etc.
Note that oldExchange may be null more than once when this strategy is throwing a
RuntimeException
and parallelProcessing is used. You can work around this behavior using
the stopOnAggregateException option.
It is possible that newExchange is null which could happen if there was no data possible to
acquire. Such as when using a PollEnricher to poll from a JMS queue which is empty and a timeout was set.
Important: In the aggregate method, do not create a new exchange instance to return, instead return either the old or
new exchange from the input parameters; favor returning the old exchange whenever possible.
Possible implementations include performing some kind of combining or delta processing, such as adding line items
together into an invoice or just using the newest exchange and removing old exchanges such as for state tracking or
market data prices; where old values are of little use.
If an implementation also implements Service
then any
EIP that allowing configuring a AggregationStrategy
will invoke the
Service.start()
and Service.stop()
to control the lifecycle aligned
with the EIP itself.
If an implementation also implements CamelContextAware
then any
EIP that allowing configuring a AggregationStrategy
will inject the
CamelContext
prior to using the aggregation strategy.Modifier and Type | Method and Description |
---|---|
Exchange |
aggregate(Exchange oldExchange,
Exchange newExchange)
Aggregates an old and new exchange together to create a single combined exchange
Important: In the aggregate method, do not create a new exchange instance to return, instead return either the
old or new exchange from the input parameters; favor returning the old exchange whenever possible.
|
default Exchange |
aggregate(Exchange oldExchange,
Exchange newExchange,
Exchange inputExchange)
Aggregates an old and new exchange together to create a single combined exchange.
|
default boolean |
canPreComplete()
Indicates if this aggregation strategy uses pre-completion mode.
|
default void |
onCompletion(Exchange exchange)
The aggregated
Exchange has completed
Important: This method must not throw any exceptions. |
default void |
onOptimisticLockFailure(Exchange oldExchange,
Exchange newExchange)
Callback when the aggregated
Exchange fails to add in the
OptimisticLockingAggregationRepository because of an
OptimisticLockingAggregationRepository.OptimisticLockingException . |
default boolean |
preComplete(Exchange oldExchange,
Exchange newExchange)
Determines if the aggregation should complete the current group, and start a new group, or the aggregation should
continue using the current group.
|
default void |
timeout(Exchange exchange,
int index,
int total,
long timeout)
A timeout occurred.
|
Exchange aggregate(Exchange oldExchange, Exchange newExchange)
oldExchange
- the oldest exchange (is null on first aggregation as we only have the new exchange)newExchange
- the newest exchange (can be null if there was no data possible to acquire)default Exchange aggregate(Exchange oldExchange, Exchange newExchange, Exchange inputExchange)
aggregate(Exchange, Exchange)
method instead.oldExchange
- the oldest exchange (is null on first aggregation as we only have the new
exchange)newExchange
- the newest exchange (can be null if there was no data possible to acquire)inputExchange
- the input exchange (input to the EIP)default boolean canPreComplete()
default boolean preComplete(Exchange oldExchange, Exchange newExchange)
canPreComplete()
returns
true.oldExchange
- the oldest exchange (is null on first aggregation as we only have the new exchange)newExchange
- the newest exchange (can be null if there was no data possible to acquire)default void onCompletion(Exchange exchange)
Exchange
has completed
Important: This method must not throw any exceptions.exchange
- the current aggregated exchange, or the original Exchange
if no
aggregation has been done before the completion occurreddefault void timeout(Exchange exchange, int index, int total, long timeout)
exchange
- the current aggregated exchange, or the original Exchange
if no aggregation has been done
before the timeout occurredindex
- the index, may be -1 if not possible to determine the indextotal
- the total, may be -1 if not possible to determine the totaltimeout
- the timeout value in millis, may be -1 if not possible to determine the timeoutdefault void onOptimisticLockFailure(Exchange oldExchange, Exchange newExchange)
Exchange
fails to add in the
OptimisticLockingAggregationRepository
because of an
OptimisticLockingAggregationRepository.OptimisticLockingException
.
Please note that when aggregating Exchange
's to be careful not to modify and return the
oldExchange
from the
aggregate(org.apache.camel.Exchange, org.apache.camel.Exchange)
method. If you are
using the default MemoryAggregationRepository this will mean you have modified the value of an object already
referenced/stored by the MemoryAggregationRepository. This makes it impossible for optimistic locking to work
correctly with the MemoryAggregationRepository.
You should instead return either the new newExchange
or a completely new instance of Exchange
.
This is due to the nature of how the underlying ConcurrentHashMap
performs CAS
operations on the value identity.ConcurrentHashMap
Apache Camel