Uses of Interface
org.apache.camel.spi.AggregationRepository

Packages that use AggregationRepository
org.apache.camel.model The JAXB POJOs for the XML Configuration of the routing rules. 
org.apache.camel.processor.aggregate Helper classes for the Aggregator pattern. 
org.apache.camel.spi Service Provider Interfaces used internally by the Camel runtime which are plugin strategies. 
 

Uses of AggregationRepository in org.apache.camel.model
 

Methods in org.apache.camel.model that return AggregationRepository
 AggregationRepository AggregateDefinition.getAggregationRepository()
           
 

Methods in org.apache.camel.model with parameters of type AggregationRepository
 AggregateDefinition AggregateDefinition.aggregationRepository(AggregationRepository aggregationRepository)
          Sets the custom aggregate repository to use.
 void AggregateDefinition.setAggregationRepository(AggregationRepository aggregationRepository)
           
 

Uses of AggregationRepository in org.apache.camel.processor.aggregate
 

Classes in org.apache.camel.processor.aggregate that implement AggregationRepository
 class MemoryAggregationRepository
          A memory based AggregationRepository which stores Exchanges in memory only.
 

Methods in org.apache.camel.processor.aggregate that return AggregationRepository
 AggregationRepository AggregateProcessor.getAggregationRepository()
           
 

Methods in org.apache.camel.processor.aggregate with parameters of type AggregationRepository
 void AggregateProcessor.setAggregationRepository(AggregationRepository aggregationRepository)
           
 

Uses of AggregationRepository in org.apache.camel.spi
 

Subinterfaces of AggregationRepository in org.apache.camel.spi
 interface OptimisticLockingAggregationRepository
          A specialized AggregationRepository which also supports optimistic locking.
 interface RecoverableAggregationRepository
          A specialized AggregationRepository which also supports recovery.
 



Apache Camel