| Package | Description |
|---|---|
| org.axonframework.commandhandling |
Classes that implement the concept of command handling using explicit command objects.
|
| org.axonframework.commandhandling.distributed | |
| org.axonframework.deadline | |
| org.axonframework.eventhandling |
Classes related to event handling and dispatching, such as
Event Listeners and the Event Bus. |
| org.axonframework.messaging |
Classes related to message processing in Axon Framework.
|
| org.axonframework.messaging.interceptors | |
| org.axonframework.queryhandling |
| Modifier and Type | Method and Description |
|---|---|
Registration |
SimpleCommandBus.registerHandlerInterceptor(MessageHandlerInterceptor<? super CommandMessage<?>> handlerInterceptor)
Registers the given interceptor to the command bus.
|
| Modifier and Type | Method and Description |
|---|---|
Registration |
DistributedCommandBus.registerHandlerInterceptor(MessageHandlerInterceptor<? super CommandMessage<?>> handlerInterceptor) |
| Modifier and Type | Method and Description |
|---|---|
protected List<MessageHandlerInterceptor<? super DeadlineMessage<?>>> |
AbstractDeadlineManager.handlerInterceptors()
Provides a list of registered handler interceptors.
|
| Modifier and Type | Method and Description |
|---|---|
Registration |
AbstractDeadlineManager.registerHandlerInterceptor(MessageHandlerInterceptor<? super DeadlineMessage<?>> handlerInterceptor) |
| Modifier and Type | Method and Description |
|---|---|
List<MessageHandlerInterceptor<? super EventMessage<?>>> |
EventProcessor.getHandlerInterceptors()
Return the list of already registered
MessageHandlerInterceptors for this event processor. |
List<MessageHandlerInterceptor<? super EventMessage<?>>> |
AbstractEventProcessor.getHandlerInterceptors() |
| Modifier and Type | Method and Description |
|---|---|
Registration |
AbstractEventProcessor.registerHandlerInterceptor(MessageHandlerInterceptor<? super EventMessage<?>> interceptor) |
| Modifier and Type | Method and Description |
|---|---|
Registration |
MessageHandlerInterceptorSupport.registerHandlerInterceptor(MessageHandlerInterceptor<? super T> handlerInterceptor)
Register the given
handlerInterceptor. |
| Constructor and Description |
|---|
DefaultInterceptorChain(UnitOfWork<? extends T> unitOfWork,
Iterable<? extends MessageHandlerInterceptor<? super T>> interceptors,
MessageHandler<? super T> handler)
Initialize the default interceptor chain to dispatch the given
message, through the
chain, to the handler. |
| Modifier and Type | Class and Description |
|---|---|
class |
BeanValidationInterceptor<T extends Message<?>>
Interceptor that applies JSR303 bean validation on incoming
Messages. |
class |
CorrelationDataInterceptor<T extends Message<?>>
Message interceptor that registers
CorrelationDataProviders with the Unit of Work. |
class |
LoggingInterceptor<T extends Message<?>>
MessageDispatchInterceptor and MessageHandlerInterceptor implementation that logs dispatched and
incoming messages, and their result, to a SLF4J logger. |
class |
TransactionManagingInterceptor<T extends Message<?>>
Interceptor that uses a
TransactionManager to start a new transaction before a Message is handled. |
| Modifier and Type | Method and Description |
|---|---|
Registration |
SimpleQueryBus.registerHandlerInterceptor(MessageHandlerInterceptor<? super QueryMessage<?,?>> interceptor)
Registers an interceptor that is used to intercept Queries before they are passed to their respective handlers.
|
Copyright © 2010–2022. All rights reserved.