Uses of Interface
org.axonframework.messaging.core.annotation.HandlerEnhancerDefinition
Packages that use HandlerEnhancerDefinition
Package
Description
Annotation-pipeline tracing support for
axon-eventsourcing: the handler enhancer enriching handler spans
with the event's tags, registered conditionally on the HandlerDefinition component.Part of the Axon Extension module.
Part of the Axon Extension module.
Part of the Axon Messaging module.
Part of the Axon Messaging module.
Part of the Axon Messaging module.
Part of the Axon Messaging module.
Part of the Axon Messaging module.
Part of the Axon Messaging module.
Part of the Axon Messaging module.
Annotation-pipeline tracing support for
axon-messaging: the handler enhancer producing per-method handler
spans, registered conditionally on the HandlerDefinition component by the tracing configuration defaults.-
Uses of HandlerEnhancerDefinition in org.axonframework.eventsourcing.handler.tracing.annotation
Classes in org.axonframework.eventsourcing.handler.tracing.annotation that implement HandlerEnhancerDefinitionModifier and TypeClassDescriptionfinal classHandlerEnhancerDefinitionthat enriches the active tracing span with an event'sTagswhen an@EventHandleris invoked. -
Uses of HandlerEnhancerDefinition in org.axonframework.extension.spring.authorization
Classes in org.axonframework.extension.spring.authorization that implement HandlerEnhancerDefinitionModifier and TypeClassDescriptionclassMessageHandlerDefinition that verifies authorization based onSecuredannotation on the message handler. -
Uses of HandlerEnhancerDefinition in org.axonframework.extension.springboot.autoconfig
Methods in org.axonframework.extension.springboot.autoconfig that return HandlerEnhancerDefinitionModifier and TypeMethodDescriptionSecurityAutoConfiguration.securedMessageHandlerDefinition()Bean creation method constructing aSecuredMessageHandlerDefinitionallowing for secured message handlers. -
Uses of HandlerEnhancerDefinition in org.axonframework.messaging.commandhandling.annotation
Classes in org.axonframework.messaging.commandhandling.annotation that implement HandlerEnhancerDefinitionModifier and TypeClassDescriptionclassImplementation of aHandlerEnhancerDefinitionused forCommandHandlerannotated methods to wrap aMessageHandlingMemberin aCommandHandlingMemberinstance. -
Uses of HandlerEnhancerDefinition in org.axonframework.messaging.core.annotation
Classes in org.axonframework.messaging.core.annotation that implement HandlerEnhancerDefinitionModifier and TypeClassDescriptionclassHandlerEnhancerDefinition instance that delegates to multiple other instances, in the order provided.Methods in org.axonframework.messaging.core.annotation that return HandlerEnhancerDefinitionModifier and TypeMethodDescriptionMultiHandlerDefinition.getHandlerEnhancerDefinition()Returns handler enhancer definition used to wrap handlers.Methods in org.axonframework.messaging.core.annotation that return types with arguments of type HandlerEnhancerDefinitionModifier and TypeMethodDescriptionMultiHandlerEnhancerDefinition.getDelegates()Returns the delegates of this instance, in the order they are evaluated to resolve parameters.Methods in org.axonframework.messaging.core.annotation with parameters of type HandlerEnhancerDefinitionModifier and TypeMethodDescriptionstatic MultiHandlerDefinitionMultiHandlerDefinition.ordered(List<HandlerDefinition> delegates, HandlerEnhancerDefinition handlerEnhancerDefinition) Creates a MultiHandlerDefinition instance with the givendelegates, which are automatically ordered based on the@Priorityannotation on their respective classes.static MultiHandlerDefinitionMultiHandlerDefinition.ordered(HandlerEnhancerDefinition handlerEnhancerDefinition, HandlerDefinition... delegates) Creates a MultiHandlerDefinition instance with the givendelegates, which are automatically ordered based on the@Priorityannotation on their respective classes.MultiHandlerEnhancerDefinition.ordered(HandlerEnhancerDefinition... delegates) Creates a MultiHandlerEnhancerDefinition instance with the givendelegates, which are automatically ordered based on the@Priorityannotation on their respective classes.Method parameters in org.axonframework.messaging.core.annotation with type arguments of type HandlerEnhancerDefinitionModifier and TypeMethodDescriptionMultiHandlerEnhancerDefinition.ordered(Collection<HandlerEnhancerDefinition> delegates) Creates a MultiHandlerEnhancerDefinition instance with the givendelegates, which are automatically ordered based on the@Priorityannotation on their respective classes.Constructors in org.axonframework.messaging.core.annotation with parameters of type HandlerEnhancerDefinitionModifierConstructorDescriptionMultiHandlerDefinition(List<HandlerDefinition> delegates, HandlerEnhancerDefinition handlerEnhancerDefinition) Initializes an instance that delegates to the givendelegates, in the order provided.MultiHandlerEnhancerDefinition(HandlerEnhancerDefinition... delegates) Initializes an instance that delegates to the givendelegates, in the order provided.Constructor parameters in org.axonframework.messaging.core.annotation with type arguments of type HandlerEnhancerDefinitionModifierConstructorDescriptionInitializes an instance that delegates to the givendelegates, in the order provided. -
Uses of HandlerEnhancerDefinition in org.axonframework.messaging.core.interception.annotation
Classes in org.axonframework.messaging.core.interception.annotation that implement HandlerEnhancerDefinitionModifier and TypeClassDescriptionclassHandlerEnhancerDefinitionthat marks methods (meta-)annotated withMessageHandlerInterceptoras interceptors. -
Uses of HandlerEnhancerDefinition in org.axonframework.messaging.core.timeout
Classes in org.axonframework.messaging.core.timeout that implement HandlerEnhancerDefinitionModifier and TypeClassDescriptionclassInspects message handler and wraps it in aTimeoutWrappedMessageHandlingMemberif the handler should have a timeout. -
Uses of HandlerEnhancerDefinition in org.axonframework.messaging.eventhandling.annotation
Classes in org.axonframework.messaging.eventhandling.annotation that implement HandlerEnhancerDefinitionModifier and TypeClassDescriptionclassImplementation of aHandlerEnhancerDefinitionused forEventHandlerannotated methods to wrap aMessageHandlingMemberin aEventHandlingMemberinstance.classDefinition ofevent handlersthat are annotated withSequencingPolicy. -
Uses of HandlerEnhancerDefinition in org.axonframework.messaging.eventhandling.replay.annotation
Classes in org.axonframework.messaging.eventhandling.replay.annotation that implement HandlerEnhancerDefinitionModifier and TypeClassDescriptionclassAn implementation of theHandlerEnhancerDefinitionthat is used forAllowReplayannotatedevent handling methods. -
Uses of HandlerEnhancerDefinition in org.axonframework.messaging.queryhandling.annotation
Classes in org.axonframework.messaging.queryhandling.annotation that implement HandlerEnhancerDefinitionModifier and TypeClassDescriptionclassImplementation of aHandlerEnhancerDefinitionused forQueryHandlerannotated methods to wrap aMessageHandlingMemberin aQueryHandlingMemberinstance. -
Uses of HandlerEnhancerDefinition in org.axonframework.messaging.tracing.annotation
Classes in org.axonframework.messaging.tracing.annotation that implement HandlerEnhancerDefinitionModifier and TypeClassDescriptionfinal classHandlerEnhancerDefinitionthat wraps annotated message handlers in a tracing span named after the handling method (for example"BookRoomHandler.handle(BookRoom)").