Uses of Interface
org.apache.camel.processor.resequencer.ExpressionResultComparator

Packages that use ExpressionResultComparator
org.apache.camel.model The JAXB POJOs for the XML Configuration of the routing rules. 
org.apache.camel.model.config The JAXB POJOs for various configurations for the XML Configuration of the routing rules. 
org.apache.camel.processor.resequencer Helper classes for the Resequencer pattern. 
 

Uses of ExpressionResultComparator in org.apache.camel.model
 

Methods in org.apache.camel.model with parameters of type ExpressionResultComparator
 ResequenceDefinition ResequenceDefinition.comparator(ExpressionResultComparator comparator)
          Sets the comparator to use for stream resequencer
 

Uses of ExpressionResultComparator in org.apache.camel.model.config
 

Methods in org.apache.camel.model.config that return ExpressionResultComparator
 ExpressionResultComparator StreamResequencerConfig.getComparator()
           
 

Methods in org.apache.camel.model.config with parameters of type ExpressionResultComparator
 void StreamResequencerConfig.setComparator(ExpressionResultComparator comparator)
           
 

Constructors in org.apache.camel.model.config with parameters of type ExpressionResultComparator
StreamResequencerConfig(int capacity, long timeout, Boolean rejectOld, ExpressionResultComparator comparator)
          Creates a new StreamResequencerConfig instance using the given values for capacity and timeout.
StreamResequencerConfig(int capacity, long timeout, ExpressionResultComparator comparator)
          Creates a new StreamResequencerConfig instance using the given values for capacity and timeout.
 

Uses of ExpressionResultComparator in org.apache.camel.processor.resequencer
 

Classes in org.apache.camel.processor.resequencer that implement ExpressionResultComparator
 class DefaultExchangeComparator
          Compares elements of an Exchange sequence by comparing long values returned by this comparator's expression.
 



Apache Camel