Uses of Interface
org.axonframework.messaging.eventhandling.sequencing.SequencingPolicy
Packages that use SequencingPolicy
Package
Description
Classes related to event handling and dispatching, such as
and the
invalid reference
Event Listeners
Event Bus.-
Uses of SequencingPolicy in org.axonframework.messaging.eventhandling
Methods in org.axonframework.messaging.eventhandling with parameters of type SequencingPolicyModifier and TypeMethodDescriptionstatic SimpleEventHandlingComponentSimpleEventHandlingComponent.create(String name, SequencingPolicy sequencingPolicy) Instantiates a simpleEventHandlingComponentthat is able to handle events and delegate them to subcomponents, using the givensequencingPolicyto decide how to sequence incoming events. -
Uses of SequencingPolicy in org.axonframework.messaging.eventhandling.processing.streaming.segmenting
Constructors in org.axonframework.messaging.eventhandling.processing.streaming.segmenting with parameters of type SequencingPolicyModifierConstructorDescriptionSegmentMatcher(SequencingPolicy sequencingPolicy) Initialize a SegmentMatcher with the givensequencingPolicy.SequenceOverridingEventHandlingComponent(SequencingPolicy sequencingPolicy, EventHandlingComponent delegate) Creates a newSequenceOverridingEventHandlingComponentthat uses the givensequencingPolicyto override sequence identification while delegating all other operations to thedelegatecomponent. -
Uses of SequencingPolicy in org.axonframework.messaging.eventhandling.sequencing
Classes in org.axonframework.messaging.eventhandling.sequencing that implement SequencingPolicyModifier and TypeClassDescriptionclassASequencingPolicyimplementation that extracts the sequence identifier from the event message payload based on a given property extractor.classFallbackSequencingPolicy<E extends Exception>Implementation ofSequencingPolicythat provides exception-based fallback behavior.classSequencingPolicy that does not enforce any sequencing requirements on event processing.classImplementation ofSequencingPolicythat combines two policies in a fallback pattern.classASequencingPolicyimplementation that extracts the sequence identifier from theEventMessage'sMetadata, based on a givenmetadataKey.classASequencingPolicyimplementation that extracts the sequence identifier from the event message payload based on a given property.classConcurrency policy that requires sequential processing of events raised by the same aggregate.classSequencingPolicy that requires sequential handling of all events delivered to an event handler.Constructors in org.axonframework.messaging.eventhandling.sequencing with parameters of type SequencingPolicyModifierConstructorDescriptionFallbackSequencingPolicy(SequencingPolicy delegate, SequencingPolicy fallback, Class<E> exceptionType) Initializes a new instance with the givendelegatepolicy,fallbackpolicy, andexceptionTypeto catch.HierarchicalSequencingPolicy(SequencingPolicy primary, SequencingPolicy secondary) Initializes a new instance with the given primarydelegateandfallbackpolicies.