Modifier and Type | Field and Description |
---|---|
protected Function<String,Function<Configuration,SequencedDeadLetterQueue<EventMessage<?>>>> |
EventProcessingModule.deadLetterQueueProvider |
protected Map<String,Component<SequencedDeadLetterQueue<EventMessage<?>>>> |
EventProcessingModule.deadLetterQueues |
Modifier and Type | Method and Description |
---|---|
Optional<SequencedDeadLetterQueue<EventMessage<?>>> |
EventProcessingModule.deadLetterQueue(String processingGroup) |
default Optional<SequencedDeadLetterQueue<EventMessage<?>>> |
EventProcessingConfiguration.deadLetterQueue(String processingGroup)
|
Modifier and Type | Method and Description |
---|---|
DeadLetteringEventHandlerInvoker.Builder |
DeadLetteringEventHandlerInvoker.Builder.queue(SequencedDeadLetterQueue<EventMessage<?>> queue)
Sets the
SequencedDeadLetterQueue this EventHandlerInvoker maintains dead letters with. |
Modifier and Type | Class and Description |
---|---|
class |
JdbcSequencedDeadLetterQueue<E extends EventMessage<?>>
A JDBC-based implementation of the
SequencedDeadLetterQueue , used for storing dead letters containing
event messages durably. |
Modifier and Type | Class and Description |
---|---|
class |
JpaSequencedDeadLetterQueue<M extends EventMessage<?>>
Deprecated.
in favor of using
JpaSequencedDeadLetterQueue
which moved to jakarta. |
Modifier and Type | Class and Description |
---|---|
class |
InMemorySequencedDeadLetterQueue<M extends Message<?>>
In-memory implementation of the
SequencedDeadLetterQueue . |
Constructor and Description |
---|
DeadLetterQueueProviderConfigurerModule(EventProcessorProperties eventProcessorProperties,
Function<String,Function<Configuration,SequencedDeadLetterQueue<EventMessage<?>>>> deadLetterQueueProvider)
Construct a
DeadLetterQueueProviderConfigurerModule , using the given eventProcessorProperties to
decide which processing groups receive the SequencedDeadLetterQueue from the given
deadLetterQueueProvider . |
Copyright © 2010–2024. All rights reserved.