| Package | Description |
|---|---|
| org.axonframework.commandhandling |
Classes that implement the concept of command handling using explicit command objects.
|
| org.axonframework.commandhandling.distributed | |
| org.axonframework.commandhandling.gateway | |
| org.axonframework.deadline | |
| org.axonframework.eventhandling |
Classes related to event handling and dispatching, such as
Event Listeners and the Event Bus. |
| org.axonframework.eventhandling.gateway | |
| org.axonframework.eventhandling.interceptors | |
| 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.registerDispatchInterceptor(MessageDispatchInterceptor<? super CommandMessage<?>> dispatchInterceptor)
Registers the given list of dispatch interceptors to the command bus.
|
| Modifier and Type | Method and Description |
|---|---|
Registration |
DistributedCommandBus.registerDispatchInterceptor(MessageDispatchInterceptor<? super CommandMessage<?>> dispatchInterceptor)
Registers the given list of dispatch interceptors to the command bus.
|
| Modifier and Type | Method and Description |
|---|---|
AbstractCommandGateway.Builder |
AbstractCommandGateway.Builder.dispatchInterceptors(MessageDispatchInterceptor<? super CommandMessage<?>>... dispatchInterceptors)
|
CommandGatewayFactory.Builder |
CommandGatewayFactory.Builder.dispatchInterceptors(MessageDispatchInterceptor<? super CommandMessage<?>>... dispatchInterceptors)
Sets the
MessageDispatchInterceptors which are invoked before dispatching a CommandMessage on
the CommandBus. |
DefaultCommandGateway.Builder |
DefaultCommandGateway.Builder.dispatchInterceptors(MessageDispatchInterceptor<? super CommandMessage<?>>... dispatchInterceptors) |
protected Registration |
AbstractCommandGateway.registerDispatchInterceptor(MessageDispatchInterceptor<? super CommandMessage<?>> interceptor)
Registers a command dispatch interceptor within a
CommandGateway. |
Registration |
DefaultCommandGateway.registerDispatchInterceptor(MessageDispatchInterceptor<? super CommandMessage<?>> dispatchInterceptor) |
CommandGatewayFactory |
CommandGatewayFactory.registerDispatchInterceptor(MessageDispatchInterceptor<CommandMessage<?>> dispatchInterceptor)
Registers the given
dispatchInterceptor which is invoked for each Command dispatched through the Command
Gateways created by this factory. |
| Modifier and Type | Method and Description |
|---|---|
AbstractCommandGateway.Builder |
AbstractCommandGateway.Builder.dispatchInterceptors(List<MessageDispatchInterceptor<? super CommandMessage<?>>> dispatchInterceptors)
|
CommandGatewayFactory.Builder |
CommandGatewayFactory.Builder.dispatchInterceptors(List<MessageDispatchInterceptor<? super CommandMessage<?>>> dispatchInterceptors)
Sets the
MessageDispatchInterceptors which are invoked before dispatching a CommandMessage on
the CommandBus. |
DefaultCommandGateway.Builder |
DefaultCommandGateway.Builder.dispatchInterceptors(List<MessageDispatchInterceptor<? super CommandMessage<?>>> dispatchInterceptors) |
| Modifier and Type | Method and Description |
|---|---|
protected List<MessageDispatchInterceptor<? super DeadlineMessage<?>>> |
AbstractDeadlineManager.dispatchInterceptors()
Provides a list of registered dispatch interceptors.
|
| Modifier and Type | Method and Description |
|---|---|
Registration |
AbstractDeadlineManager.registerDispatchInterceptor(MessageDispatchInterceptor<? super DeadlineMessage<?>> dispatchInterceptor) |
| Modifier and Type | Method and Description |
|---|---|
Registration |
AbstractEventBus.registerDispatchInterceptor(MessageDispatchInterceptor<? super EventMessage<?>> dispatchInterceptor)
Register the given DispatchInterceptor.
|
| Modifier and Type | Method and Description |
|---|---|
AbstractEventGateway.Builder |
AbstractEventGateway.Builder.dispatchInterceptors(MessageDispatchInterceptor<? super EventMessage<?>>... dispatchInterceptors)
|
DefaultEventGateway.Builder |
DefaultEventGateway.Builder.dispatchInterceptors(MessageDispatchInterceptor<? super EventMessage<?>>... dispatchInterceptors) |
Registration |
AbstractEventGateway.registerDispatchInterceptor(MessageDispatchInterceptor<? super EventMessage<?>> interceptor)
Registers an event dispatch interceptor within an
EventGateway. |
| Modifier and Type | Method and Description |
|---|---|
AbstractEventGateway.Builder |
AbstractEventGateway.Builder.dispatchInterceptors(List<MessageDispatchInterceptor<? super EventMessage<?>>> dispatchInterceptors)
|
DefaultEventGateway.Builder |
DefaultEventGateway.Builder.dispatchInterceptors(List<MessageDispatchInterceptor<? super EventMessage<?>>> dispatchInterceptors) |
| Modifier and Type | Class and Description |
|---|---|
class |
EventLoggingInterceptor
Message Dispatch Interceptor that logs published events to a SLF4J logger.
|
| Modifier and Type | Method and Description |
|---|---|
Registration |
MessageDispatchInterceptorSupport.registerDispatchInterceptor(MessageDispatchInterceptor<? super T> dispatchInterceptor)
Register the given DispatchInterceptor.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BeanValidationInterceptor<T extends Message<?>>
Interceptor that applies JSR303 bean validation on incoming
Messages. |
class |
LoggingInterceptor<T extends Message<?>>
MessageDispatchInterceptor and MessageHandlerInterceptor implementation that logs dispatched and
incoming messages, and their result, to a SLF4J logger. |
| Modifier and Type | Method and Description |
|---|---|
DefaultQueryGateway.Builder |
DefaultQueryGateway.Builder.dispatchInterceptors(MessageDispatchInterceptor<? super QueryMessage<?,?>>... dispatchInterceptors)
|
Registration |
SimpleQueryBus.registerDispatchInterceptor(MessageDispatchInterceptor<? super QueryMessage<?,?>> interceptor)
Registers an interceptor that intercepts Queries as they are sent.
|
Registration |
DefaultQueryGateway.registerDispatchInterceptor(MessageDispatchInterceptor<? super QueryMessage<?,?>> interceptor) |
Registration |
SimpleQueryUpdateEmitter.registerDispatchInterceptor(MessageDispatchInterceptor<? super SubscriptionQueryUpdateMessage<?>> interceptor) |
| Modifier and Type | Method and Description |
|---|---|
DefaultQueryGateway.Builder |
DefaultQueryGateway.Builder.dispatchInterceptors(List<MessageDispatchInterceptor<? super QueryMessage<?,?>>> dispatchInterceptors)
|
Copyright © 2010–2025. All rights reserved.