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.modelling.saga.metamodel | |
org.axonframework.queryhandling.annotation |
Modifier and Type | Interface and Description |
---|---|
interface |
CommandMessageHandlingMember<T>
Interface describing a message handler capable of handling a specific command.
|
Modifier and Type | Method and Description |
---|---|
<T> MessageHandlingMember<T> |
MethodCommandHandlerDefinition.wrapHandler(MessageHandlingMember<T> original) |
Modifier and Type | Method and Description |
---|---|
<T> MessageHandlingMember<T> |
MethodCommandHandlerDefinition.wrapHandler(MessageHandlingMember<T> original) |
Modifier and Type | Interface and Description |
---|---|
interface |
DeadlineHandlingMember<T>
Interface describing a message handler capable of handling a specific deadline.
|
Modifier and Type | Method and Description |
---|---|
<T> MessageHandlingMember<T> |
DeadlineMethodMessageHandlerDefinition.wrapHandler(MessageHandlingMember<T> original) |
Modifier and Type | Method and Description |
---|---|
<T> MessageHandlingMember<T> |
DeadlineMethodMessageHandlerDefinition.wrapHandler(MessageHandlingMember<T> original) |
Modifier and Type | Method and Description |
---|---|
<T> MessageHandlingMember<T> |
ReplayAwareMessageHandlerWrapper.wrapHandler(MessageHandlingMember<T> original) |
Modifier and Type | Method and Description |
---|---|
<T> MessageHandlingMember<T> |
ReplayAwareMessageHandlerWrapper.wrapHandler(MessageHandlingMember<T> original) |
Modifier and Type | Class and Description |
---|---|
class |
AnnotatedMessageHandlingMember<T>
Implementation of a
MessageHandlingMember that is used to invoke message handler methods on the target type. |
class |
WrappedMessageHandlingMember<T>
Abstract implementation of a
MessageHandlingMember that delegates to a wrapped MessageHandlingMember. |
Modifier and Type | Method and Description |
---|---|
<T> MessageHandlingMember<T> |
MultiHandlerEnhancerDefinition.wrapHandler(MessageHandlingMember<T> original) |
<T> MessageHandlingMember<T> |
HandlerEnhancerDefinition.wrapHandler(MessageHandlingMember<T> original)
Enhance the given
original handler. |
Modifier and Type | Method and Description |
---|---|
<T> Optional<MessageHandlingMember<T>> |
AnnotatedMessageHandlingMemberDefinition.createHandler(Class<T> declaringType,
Executable executable,
ParameterResolverFactory parameterResolverFactory) |
<T> Optional<MessageHandlingMember<T>> |
MultiHandlerDefinition.createHandler(Class<T> declaringType,
Executable executable,
ParameterResolverFactory parameterResolverFactory) |
<T> Optional<MessageHandlingMember<T>> |
HandlerDefinition.createHandler(Class<T> declaringType,
Executable executable,
ParameterResolverFactory parameterResolverFactory)
Create a
MessageHandlingMember for the given executable method. |
List<MessageHandlingMember<? super T>> |
AnnotatedHandlerInspector.getHandlers()
Returns a list of detected members of the inspected entity that are capable of handling certain messages.
|
static Comparator<MessageHandlingMember<?>> |
HandlerComparator.instance()
Returns the singleton comparator managed by the HandlerComparator class.
|
Modifier and Type | Method and Description |
---|---|
<T> MessageHandlingMember<T> |
MultiHandlerEnhancerDefinition.wrapHandler(MessageHandlingMember<T> original) |
<T> MessageHandlingMember<T> |
HandlerEnhancerDefinition.wrapHandler(MessageHandlingMember<T> original)
Enhance the given
original handler. |
Constructor and Description |
---|
WrappedMessageHandlingMember(MessageHandlingMember<T> delegate)
Initializes the member using the given
delegate . |
Modifier and Type | Interface and Description |
---|---|
interface |
CommandHandlerInterceptorHandlingMember<T>
Interface specifying a message handler capable of intercepting a command.
|
Modifier and Type | Class and Description |
---|---|
class |
ChildForwardingCommandMessageHandlingMember<P,C>
Implementation of a
CommandMessageHandlingMember that forwards commands to a child entity. |
Modifier and Type | Method and Description |
---|---|
<T> MessageHandlingMember<T> |
MethodCommandHandlerInterceptorDefinition.wrapHandler(MessageHandlingMember<T> original) |
Modifier and Type | Method and Description |
---|---|
List<MessageHandlingMember<? super T>> |
EntityModel.commandHandlerInterceptors()
Gets a list of command handler interceptors for this entity.
|
List<MessageHandlingMember<? super P>> |
AnnotatedChildEntity.commandHandlers() |
List<MessageHandlingMember<? super T>> |
EntityModel.commandHandlers()
Get a mapping of
MessageHandlingMember to command name (obtained via CommandMessage.getCommandName() ). |
List<MessageHandlingMember<? super T>> |
ChildEntity.commandHandlers()
Returns the command handlers declared in this entity
|
Modifier and Type | Method and Description |
---|---|
<T> MessageHandlingMember<T> |
MethodCommandHandlerInterceptorDefinition.wrapHandler(MessageHandlingMember<T> original) |
Constructor and Description |
---|
AnnotatedCommandHandlerInterceptor(MessageHandlingMember<T> delegate,
T target)
Initializes annotated command handler interceptor with delegate handler and target on which handler is to be
invoked.
|
ChildForwardingCommandMessageHandlingMember(List<MessageHandlingMember<? super C>> childHandlerInterceptors,
MessageHandlingMember<? super C> childHandler,
BiFunction<CommandMessage<?>,P,C> childEntityResolver)
Initializes a
ChildForwardingCommandMessageHandlingMember that routes commands to a compatible child
entity. |
Constructor and Description |
---|
ChildForwardingCommandMessageHandlingMember(List<MessageHandlingMember<? super C>> childHandlerInterceptors,
MessageHandlingMember<? super C> childHandler,
BiFunction<CommandMessage<?>,P,C> childEntityResolver)
Initializes a
ChildForwardingCommandMessageHandlingMember that routes commands to a compatible child
entity. |
Modifier and Type | Class and Description |
---|---|
class |
SagaMethodMessageHandlingMember<T>
A data holder containing information of
SagaEventHandler annotated methods. |
Modifier and Type | Method and Description |
---|---|
<T> MessageHandlingMember<T> |
SagaMethodMessageHandlerDefinition.wrapHandler(MessageHandlingMember<T> original) |
Modifier and Type | Method and Description |
---|---|
<T> Object |
PayloadAssociationResolver.resolve(String associationPropertyName,
EventMessage<?> message,
MessageHandlingMember<T> handler)
Finds the association property value in the message's payload.
|
<T> Object |
AssociationResolver.resolve(String associationPropertyName,
EventMessage<?> message,
MessageHandlingMember<T> handler)
Resolves the associationPropertyName as a value.
|
<T> Object |
MetaDataAssociationResolver.resolve(String associationPropertyName,
EventMessage<?> message,
MessageHandlingMember<T> handler)
Finds the association property value by looking up the association property name in the event message's
MetaData . |
<T> void |
PayloadAssociationResolver.validate(String associationPropertyName,
MessageHandlingMember<T> handler)
Validates that the association property name exists as checked with the payload type.
|
<T> void |
AssociationResolver.validate(String associationPropertyName,
MessageHandlingMember<T> handler)
Validates that the associationPropertyName supplied is compatible with the handler.
|
<T> void |
MetaDataAssociationResolver.validate(String associationPropertyName,
MessageHandlingMember<T> handler)
Does nothing because we can only check for existence of property in the metadata during event handling.
|
<T> MessageHandlingMember<T> |
SagaMethodMessageHandlerDefinition.wrapHandler(MessageHandlingMember<T> original) |
Constructor and Description |
---|
SagaMethodMessageHandlingMember(MessageHandlingMember<T> delegate,
SagaCreationPolicy creationPolicy,
String associationKey,
String associationPropertyName,
AssociationResolver associationResolver,
boolean endingHandler)
Creates a SagaMethodMessageHandler.
|
Modifier and Type | Method and Description |
---|---|
List<MessageHandlingMember<? super T>> |
SagaModel.findHandlerMethods(EventMessage<?> event)
Returns a
List of MessageHandlingMember that can handle the given event. |
Modifier and Type | Interface and Description |
---|---|
interface |
QueryHandlingMember<T>
Interface indicating that a MessageHandlingMember is capable of handling specific query messages.
|
Modifier and Type | Method and Description |
---|---|
<T> MessageHandlingMember<T> |
MethodQueryMessageHandlerDefinition.wrapHandler(MessageHandlingMember<T> original) |
Modifier and Type | Method and Description |
---|---|
<T> MessageHandlingMember<T> |
MethodQueryMessageHandlerDefinition.wrapHandler(MessageHandlingMember<T> original) |
Copyright © 2010–2019. All rights reserved.