Uses of Class
org.axonframework.messaging.eventhandling.deadletter.DeadLetterQueueConfiguration
Packages that use DeadLetterQueueConfiguration
Package
Description
Part of the Axon Messaging module.
Part of the Axon Messaging module.
-
Uses of DeadLetterQueueConfiguration in org.axonframework.messaging.eventhandling.deadletter
Methods in org.axonframework.messaging.eventhandling.deadletter that return DeadLetterQueueConfigurationModifier and TypeMethodDescriptionDeadLetterQueueConfiguration.cacheMaxSize(int cacheMaxSize) Sets the maximum size of the sequence identifier cache used by theCachingSequencedDeadLetterQueue.DeadLetterQueueConfiguration.clearOnReset(boolean clearOnReset) Sets whether to clear the dead-letter queue when the processor is reset.DeadLetterQueueConfiguration.disabled()Disables dead-letter queue functionality for this processor.DeadLetterQueueConfiguration.enabled()Enables dead-letter queue functionality for this processor.DeadLetterQueueConfiguration.enqueuePolicy(EnqueuePolicy<EventMessage> enqueuePolicy) Sets theEnqueuePolicyto use when deciding whether to dead-letter a failed event.DeadLetterQueueConfiguration.factory(SequencedDeadLetterQueueFactory factory) Sets theSequencedDeadLetterQueueFactoryused to createSequencedDeadLetterQueueinstances. -
Uses of DeadLetterQueueConfiguration in org.axonframework.messaging.eventhandling.processing.streaming.pooled
Methods in org.axonframework.messaging.eventhandling.processing.streaming.pooled that return DeadLetterQueueConfigurationModifier and TypeMethodDescriptionPooledStreamingEventProcessorConfiguration.deadLetterQueue()Returns the mergedDeadLetterQueueConfigurationby applying all customizations.Method parameters in org.axonframework.messaging.eventhandling.processing.streaming.pooled with type arguments of type DeadLetterQueueConfigurationModifier and TypeMethodDescriptionPooledStreamingEventProcessorConfiguration.deadLetterQueue(UnaryOperator<DeadLetterQueueConfiguration> customization) Configures the Dead Letter Queue (DLQ) for this processor using a customization function.