Class Ignore<M extends Message>

java.lang.Object
org.axonframework.messaging.deadletter.Ignore<M>
Type Parameters:
M - An implementation of Message contained in the dead letter that's been made a decision on.
All Implemented Interfaces:
EnqueueDecision<M>

public class Ignore<M extends Message> extends Object implements EnqueueDecision<M>
An EnqueueDecision stating a dead letter should be ignored.

This means the decision can be ignored entirely. As such the component enqueueing a letter will decide what to do with it. In most scenarios this result in enqueueing the given letter, or keeping it in the queue.

Do not that an EnqueueDecision only impacts how, and if, to enqueue a dead letter, and nothing more.

Since:
4.6.0
Author:
Steven van Beelen