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 |
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 |
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(List<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. |
Modifier and Type | Class and Description |
---|---|
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 QueryMessages.
|
Modifier and Type | Method and Description |
---|---|
HandlerEnhancerDefinition |
SpringHandlerEnhancerDefinitionBean.getObject() |
Modifier and Type | Method and Description |
---|---|
void |
SpringHandlerEnhancerDefinitionBean.setAdditionalHandlers(List<HandlerEnhancerDefinition> additionalFactories)
Defines any additional handler enhancer definitions that should be used.
|
Copyright © 2010–2019. All rights reserved.