Uses of Interface
org.axonframework.messaging.deadletter.EnqueueDecision
Packages that use EnqueueDecision
Package
Description
-
Uses of EnqueueDecision in org.axonframework.eventhandling.deadletter.jdbc
Method parameters in org.axonframework.eventhandling.deadletter.jdbc with type arguments of type EnqueueDecisionModifier and TypeMethodDescriptionbooleanJdbcSequencedDeadLetterQueue.process(Function<DeadLetter<? extends E>, EnqueueDecision<E>> processingTask) booleanJdbcSequencedDeadLetterQueue.process(Predicate<DeadLetter<? extends E>> sequenceFilter, Function<DeadLetter<? extends E>, EnqueueDecision<E>> processingTask) -
Uses of EnqueueDecision in org.axonframework.eventhandling.deadletter.jpa
Method parameters in org.axonframework.eventhandling.deadletter.jpa with type arguments of type EnqueueDecisionModifier and TypeMethodDescriptionbooleanJpaSequencedDeadLetterQueue.process(Function<DeadLetter<? extends M>, EnqueueDecision<M>> processingTask) booleanJpaSequencedDeadLetterQueue.process(Predicate<DeadLetter<? extends M>> sequenceFilter, Function<DeadLetter<? extends M>, EnqueueDecision<M>> processingTask) -
Uses of EnqueueDecision in org.axonframework.eventhandling.deadletter.legacyjpa
Method parameters in org.axonframework.eventhandling.deadletter.legacyjpa with type arguments of type EnqueueDecisionModifier and TypeMethodDescriptionbooleanJpaSequencedDeadLetterQueue.process(Function<DeadLetter<? extends M>, EnqueueDecision<M>> processingTask) Deprecated.booleanJpaSequencedDeadLetterQueue.process(Predicate<DeadLetter<? extends M>> sequenceFilter, Function<DeadLetter<? extends M>, EnqueueDecision<M>> processingTask) Deprecated. -
Uses of EnqueueDecision in org.axonframework.messaging.deadletter
Classes in org.axonframework.messaging.deadletter that implement EnqueueDecisionModifier and TypeClassDescriptionclassDoNotEnqueue<M extends Message<?>>AnEnqueueDecisionstating adead lettershould not be enqueued.classAnEnqueueDecisionstating adead lettershould be ignored.classShouldEnqueue<M extends Message<?>>AnEnqueueDecisionstating adead lettershould be enqueued.Methods in org.axonframework.messaging.deadletter that return EnqueueDecisionModifier and TypeMethodDescriptionEnqueuePolicy.decide(DeadLetter<? extends M> letter, Throwable cause) Method parameters in org.axonframework.messaging.deadletter with type arguments of type EnqueueDecisionModifier and TypeMethodDescriptionbooleanInMemorySequencedDeadLetterQueue.process(Predicate<DeadLetter<? extends M>> sequenceFilter, Function<DeadLetter<? extends M>, EnqueueDecision<M>> processingTask) default booleanSequencedDeadLetterQueue.process(Function<DeadLetter<? extends M>, EnqueueDecision<M>> processingTask) Process a sequence of enqueueddead letterswith the givenprocessingTask.booleanSequencedDeadLetterQueue.process(Predicate<DeadLetter<? extends M>> sequenceFilter, Function<DeadLetter<? extends M>, EnqueueDecision<M>> processingTask) Process a sequence of enqueueddead lettersthrough the givenprocessingTaskmatching thesequenceFilter.