| Package | Description |
|---|---|
| org.apache.camel.model |
The JAXB POJOs for the
XML
Configuration of the routing rules.
|
| Modifier and Type | Method and Description |
|---|---|
IdempotentConsumerDefinition |
IdempotentConsumerDefinition.completionEager(boolean completionEager)
Sets whether to complete the idempotent consumer eager or when the
exchange is done.
|
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(org.apache.camel.Expression messageIdExpression)
Idempotent
consumer EIP: Creates an
IdempotentConsumer to avoid duplicate messages |
IdempotentConsumerDefinition |
ProcessorDefinition.idempotentConsumer(org.apache.camel.Expression messageIdExpression,
org.apache.camel.spi.IdempotentRepository idempotentRepository)
Idempotent
consumer EIP: Creates an
IdempotentConsumer to avoid duplicate messages |
IdempotentConsumerDefinition |
IdempotentConsumerDefinition.messageIdRepository(org.apache.camel.spi.IdempotentRepository idempotentRepository)
Sets the message id repository for the idempotent consumer
|
IdempotentConsumerDefinition |
IdempotentConsumerDefinition.messageIdRepository(Supplier<org.apache.camel.spi.IdempotentRepository> idempotentRepository)
Sets 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.
|
| Modifier and Type | Method and Description |
|---|---|
ExpressionClause<IdempotentConsumerDefinition> |
ProcessorDefinition.idempotentConsumer()
Idempotent
consumer EIP: Creates an
IdempotentConsumer using a fluent builder. |
Apache Camel