| 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.queryhandling.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 |
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(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 |
MethodQueryMessageHandlerDefinition
Definition of handlers that can handle
QueryMessages. |
Copyright © 2010–2022. All rights reserved.