Class SimpleEventHandlingComponent
- All Implemented Interfaces:
DescribableComponent,MessageHandler,EventHandler,EventHandlerRegistry<SimpleEventHandlingComponent>,EventHandlingComponent
EventHandlingComponent, containing a collection of
EventHandlers to invoke on handle(EventMessage, ProcessingContext).- Since:
- 5.0.0
- Author:
- Steven van Beelen
-
Method Summary
Modifier and TypeMethodDescriptionstatic SimpleEventHandlingComponentInstantiates a simpleEventHandlingComponentthat is able to handle events and delegate them to subcomponents.static SimpleEventHandlingComponentcreate(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.voiddescribeTo(ComponentDescriptor descriptor) Describe the properties ofthis DescribableComponentwith the givendescriptor.handle(EventMessage event, ProcessingContext context) Handles the giveneventwithin the givencontext.sequenceIdentifierFor(EventMessage event, ProcessingContext context) Returns the sequence identifier for the givenevent.subscribe(Set<QualifiedName> names, EventHandler handler) subscribe(QualifiedName name, EventHandler handler) All supportedevents, referenced through aQualifiedName.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.axonframework.messaging.eventhandling.EventHandlerRegistry
subscribeMethods inherited from interface org.axonframework.messaging.eventhandling.EventHandlingComponent
supports
-
Method Details
-
create
Instantiates a simpleEventHandlingComponentthat is able to handle events and delegate them to subcomponents.Uses a default sequencing policy that will first try for the
SequentialPerAggregatePolicy, falling back to theSequentialPolicywhen the former returns no sequence value.- Parameters:
name- The name of the component, used fordescribingthe component.- Returns:
- A simple
EventHandlingComponentinstance with the givenname.
-
create
public static SimpleEventHandlingComponent create(@Nonnull String name, @Nonnull SequencingPolicy sequencingPolicy) Instantiates a simpleEventHandlingComponentthat is able to handle events and delegate them to subcomponents, using the givensequencingPolicyto decide how to sequence incoming events.- Parameters:
name- The name of the component, used fordescribingthe component.sequencingPolicy- TheSequencingPolicyto use for sequencing events through, for example,sequenceIdentifierFor(EventMessage, ProcessingContext).- Returns:
- A simple
EventHandlingComponentinstance with the givenname.
-
handle
@Nonnull public MessageStream.Empty<Message> handle(@Nonnull EventMessage event, @Nonnull ProcessingContext context) Description copied from interface:EventHandler- Specified by:
handlein interfaceEventHandler- Parameters:
event- The event to handle.context- The context to the giveneventis handled in.- Returns:
- An
empty streamcontaining nothing.
-
subscribe
public SimpleEventHandlingComponent subscribe(@Nonnull Set<QualifiedName> names, @Nonnull EventHandler handler) Description copied from interface:EventHandlerRegistrySubscribe the givenhandlerforeventsof the givennames.If a subscription already exists for any
namein the given set, the behavior is undefined. Implementations may throw an exception to refuse duplicate subscription or alternatively decide whether the existing or newhandlergets the subscription.- Specified by:
subscribein interfaceEventHandlerRegistry<SimpleEventHandlingComponent>- Parameters:
names- The names of the givencommandHandlercan handle.handler- The handler instance that handleseventsfor the given names.- Returns:
- This registry for fluent interfacing.
-
subscribe
public SimpleEventHandlingComponent subscribe(@Nonnull QualifiedName name, @Nonnull EventHandler handler) Description copied from interface:EventHandlerRegistrySubscribe the givenhandlerforeventsof the givenname.If a subscription already exists for the
name, the behavior is undefined. Implementations may throw an exception to refuse duplicate subscription or alternatively decide whether the existing or newhandlergets the subscription.- Specified by:
subscribein interfaceEventHandlerRegistry<SimpleEventHandlingComponent>- Parameters:
name- The name the givencommandHandlercan handle.handler- The handler instance that handleseventsfor the given name.- Returns:
- This registry for fluent interfacing.
-
supportedEvents
Description copied from interface:EventHandlingComponentAll supportedevents, referenced through aQualifiedName.- Specified by:
supportedEventsin interfaceEventHandlingComponent- Returns:
- All supported
events, referenced through aQualifiedName.
-
sequenceIdentifierFor
@Nonnull public Object sequenceIdentifierFor(@Nonnull EventMessage event, @Nonnull ProcessingContext context) Returns the sequence identifier for the givenevent. When two events have the same sequence identifier (as defined by their equals method), they will be executed sequentially. Important: AllEventHandlersfor the sameQualifiedNamewithin a singleEventHandlingComponentmust return the same sequence identifier for a given event. Mixing different sequence identifiers within the scope of a singleEventHandlingComponentis not supported and may lead to undefined behavior.The implementation automatically chooses the appropriate sequencing policy based on the event context:
- If the aggregate identifier is present in the
ProcessingContext(i.e., the event is an aggregate event), it usesSequentialPerAggregatePolicyto ensure events for the same aggregate are processed sequentially while allowing concurrent processing of events from different aggregates. - If no aggregate identifier is present (i.e., the event is not an aggregate event), it uses
SequentialPolicywhich ensures all events are processed sequentially (no concurrency) as the safest default option.
Override this method to provide custom sequencing behavior. Or use a
SequenceOverridingEventHandlingComponentif you cannot inherit from a certainEventHandlingComponentimplementation.- Specified by:
sequenceIdentifierForin interfaceEventHandlingComponent- Parameters:
event- The event for which to get the sequencing identifier.context- The processing context in which the event is being handled.- Returns:
- A sequence identifier for the given event.
- If the aggregate identifier is present in the
-
describeTo
Description copied from interface:DescribableComponentDescribe the properties ofthis DescribableComponentwith the givendescriptor.Components should call the appropriate
describePropertymethods on the descriptor to register their properties. The descriptor is responsible for determining how these properties are formatted and structured in the final output.Best Practices: As a general rule, all relevant fields of a
DescribableComponentimplementation should be described in this method. However, developers have discretion to include only the fields that make sense in the context. Not every field may be meaningful for description purposes, especially internal implementation details. Furthermore, components might want to expose different information based on their current state. The final decision on what properties to include lies with the person implementing thedescribeTomethod, who should focus on providing information that is useful for understanding the component's configuration and state.Example implementation:
public void describeTo(ComponentDescriptor descriptor) { descriptor.describeProperty("name", this.name); descriptor.describeProperty("enabled", this.enabled); descriptor.describeProperty("configuration", this.configuration); // A nested component descriptor.describeProperty("handlers", this.eventHandlers); // A collection }- Specified by:
describeToin interfaceDescribableComponent- Parameters:
descriptor- The component descriptor to describethis DescribableComponentn its properties in.
-