Uses of Class
org.apache.camel.model.IdempotentConsumerDefinition

Packages that use IdempotentConsumerDefinition
org.apache.camel.model The JAXB POJOs for the XML Configuration of the routing rules. 
 

Uses of IdempotentConsumerDefinition in org.apache.camel.model
 

Methods in org.apache.camel.model that return IdempotentConsumerDefinition
 IdempotentConsumerDefinition IdempotentConsumerDefinition.eager(boolean eager)
          Sets whether to eagerly add the key to the idempotent repository or wait until the exchange is complete.
 IdempotentConsumerDefinition ProcessorDefinition.idempotentConsumer(Expression messageIdExpression)
          Idempotent consumer EIP: Creates an IdempotentConsumer to avoid duplicate messages
 IdempotentConsumerDefinition ProcessorDefinition.idempotentConsumer(Expression messageIdExpression, IdempotentRepository<?> idempotentRepository)
          Idempotent consumer EIP: Creates an IdempotentConsumer to avoid duplicate messages
 IdempotentConsumerDefinition IdempotentConsumerDefinition.messageIdRepository(IdempotentRepository<?> idempotentRepository)
          Sets the the message id repository for the idempotent consumer
 IdempotentConsumerDefinition IdempotentConsumerDefinition.messageIdRepositoryRef(String messageIdRepositoryRef)
          Sets the reference name of the message id repository
 IdempotentConsumerDefinition IdempotentConsumerDefinition.removeOnFailure(boolean removeOnFailure)
          Sets whether to remove or keep the key on failure.
 IdempotentConsumerDefinition IdempotentConsumerDefinition.skipDuplicate(boolean skipDuplicate)
          Sets whether to skip duplicates or not.
 

Methods in org.apache.camel.model that return types with arguments of type IdempotentConsumerDefinition
 ExpressionClause<IdempotentConsumerDefinition> ProcessorDefinition.idempotentConsumer(IdempotentRepository<?> idempotentRepository)
          Deprecated. will be removed in Camel 3.0. Instead use any of the other methods
 



Apache Camel