Package | Description |
---|---|
org.axonframework.commandhandling |
Classes that implement the concept of command handling using explicit command objects.
|
org.axonframework.deadline.annotation | |
org.axonframework.eventhandling.replay | |
org.axonframework.messaging.annotation | |
org.axonframework.modelling.command.inspection | |
org.axonframework.modelling.saga | |
org.axonframework.queryhandling.annotation | |
org.axonframework.spring.config.annotation | |
org.axonframework.springboot.autoconfig | |
org.axonframework.test.aggregate | |
org.axonframework.test.saga | |
org.axonframework.tracing |
Modifier and Type | Class and Description |
---|---|
class |
MethodCommandHandlerDefinition
Implementation of a
HandlerEnhancerDefinition that is used for CommandHandler annotated methods. |
Modifier and Type | Class and Description |
---|---|
class |
DeadlineMethodMessageHandlerDefinition
Implementation of a
HandlerEnhancerDefinition that is used for DeadlineHandler annotated methods. |
Modifier and Type | Class and Description |
---|---|
class |
ReplayAwareMessageHandlerWrapper
An implementation of the
HandlerEnhancerDefinition that is used for
AllowReplay annotated message handling methods. |
Modifier and Type | Class and Description |
---|---|
class |
MessageHandlerInterceptorDefinition
HandlerEnhancerDefinition that marks methods (meta-)annotated with MessageHandlerInterceptor
as interceptors. |
class |
MultiHandlerEnhancerDefinition
HandlerEnhancerDefinition instance that delegates to multiple other instances, in the order provided.
|
Modifier and Type | Method and Description |
---|---|
HandlerEnhancerDefinition |
MultiHandlerDefinition.getHandlerEnhancerDefinition()
Returns handler enhancer definition used to wrap handlers.
|
Modifier and Type | Method and Description |
---|---|
List<HandlerEnhancerDefinition> |
MultiHandlerEnhancerDefinition.getDelegates()
Returns the delegates of this instance, in the order they are evaluated to resolve parameters.
|
Modifier and Type | Method and Description |
---|---|
static MultiHandlerEnhancerDefinition |
MultiHandlerEnhancerDefinition.ordered(HandlerEnhancerDefinition... delegates)
Creates a MultiHandlerEnhancerDefinition instance with the given
delegates , which are automatically
ordered based on the @Priority annotation on their respective classes. |
static MultiHandlerDefinition |
MultiHandlerDefinition.ordered(HandlerEnhancerDefinition handlerEnhancerDefinition,
HandlerDefinition... delegates)
Creates a MultiHandlerDefinition instance with the given
delegates , which are automatically ordered
based
on the @Priority annotation on their respective classes. |
static MultiHandlerDefinition |
MultiHandlerDefinition.ordered(List<HandlerDefinition> delegates,
HandlerEnhancerDefinition handlerEnhancerDefinition)
Creates a MultiHandlerDefinition instance with the given
delegates , which are automatically ordered based
on the @Priority annotation on their respective classes. |
Modifier and Type | Method and Description |
---|---|
static MultiHandlerEnhancerDefinition |
MultiHandlerEnhancerDefinition.ordered(Collection<HandlerEnhancerDefinition> delegates)
Creates a MultiHandlerEnhancerDefinition instance with the given
delegates , which are automatically
ordered based on the @Priority annotation on their respective classes. |
Constructor and Description |
---|
MultiHandlerDefinition(List<HandlerDefinition> delegates,
HandlerEnhancerDefinition handlerEnhancerDefinition)
Initializes an instance that delegates to the given
delegates , in the order provided. |
MultiHandlerEnhancerDefinition(HandlerEnhancerDefinition... delegates)
Initializes an instance that delegates to the given
delegates , in the order provided. |
Constructor and Description |
---|
MultiHandlerEnhancerDefinition(Collection<HandlerEnhancerDefinition> delegates)
Initializes an instance that delegates to the given
delegates , in the order provided. |
Modifier and Type | Class and Description |
---|---|
class |
MethodCommandHandlerInterceptorDefinition
Implementation of
HandlerEnhancerDefinition used for CommandHandlerInterceptor annotated methods. |
class |
MethodCreationPolicyDefinition
Implementation of
HandlerEnhancerDefinition used for CreationPolicy annotated methods. |
Modifier and Type | Class and Description |
---|---|
class |
EndSagaMessageHandlerDefinition
A
HandlerEnhancerDefinition inspecting the existence of the EndSaga annotation on MessageHandlingMember s. |
class |
SagaMethodMessageHandlerDefinition
Utility class that inspects annotation on a Saga instance and returns the relevant configuration for its Event
Handlers.
|
Modifier and Type | Class and Description |
---|---|
class |
MethodQueryMessageHandlerDefinition
Definition of handlers that can handle
QueryMessage s. |
Modifier and Type | Method and Description |
---|---|
HandlerEnhancerDefinition |
SpringHandlerEnhancerDefinitionBean.getObject()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
SpringHandlerDefinitionBean.setAdditionalHandlerEnhancers(List<HandlerEnhancerDefinition> additionalFactories)
Deprecated.
Defines any additional handler definitions that should be used.
|
void |
SpringHandlerEnhancerDefinitionBean.setAdditionalHandlers(List<HandlerEnhancerDefinition> additionalFactories)
Deprecated.
Defines any additional handler enhancer definitions that should be used.
|
Constructor and Description |
---|
HandlerDefinitionFactoryBean(List<HandlerDefinition> definitions,
List<HandlerEnhancerDefinition> enhancerDefinitions) |
Modifier and Type | Method and Description |
---|---|
HandlerEnhancerDefinition |
AxonTracingAutoConfiguration.tracingHandlerEnhancerDefinition(SpanFactory spanFactory,
TracingProperties properties) |
Modifier and Type | Method and Description |
---|---|
HandlerDefinitionFactoryBean |
InfraConfiguration.handlerDefinition(List<HandlerDefinition> handlerDefinitions,
List<HandlerEnhancerDefinition> handlerEnhancerDefinitions) |
Modifier and Type | Method and Description |
---|---|
FixtureConfiguration<T> |
FixtureConfiguration.registerHandlerEnhancerDefinition(HandlerEnhancerDefinition handlerEnhancerDefinition)
Registers a
HandlerEnhancerDefinition within this fixture. |
FixtureConfiguration<T> |
AggregateTestFixture.registerHandlerEnhancerDefinition(HandlerEnhancerDefinition handlerEnhancerDefinition) |
Modifier and Type | Method and Description |
---|---|
FixtureConfiguration |
SagaTestFixture.registerHandlerEnhancerDefinition(HandlerEnhancerDefinition handlerEnhancerDefinition) |
FixtureConfiguration |
FixtureConfiguration.registerHandlerEnhancerDefinition(HandlerEnhancerDefinition handlerEnhancerDefinition)
Registers a
HandlerEnhancerDefinition within this fixture. |
Modifier and Type | Class and Description |
---|---|
class |
TracingHandlerEnhancerDefinition
Enhances message handlers with the provided
SpanFactory , wrapping handling of the message in a Span
that is reported to the monitoring tooling. |
Copyright © 2010–2023. All rights reserved.