| Package | Description |
|---|---|
| org.axonframework.commandhandling |
Classes that implement the concept of command handling using explicit command objects.
|
| org.axonframework.commandhandling.disruptor | |
| org.axonframework.commandhandling.distributed | |
| org.axonframework.commandhandling.gateway | |
| org.axonframework.config |
| Modifier and Type | Class and Description |
|---|---|
class |
AsynchronousCommandBus
Specialization of the SimpleCommandBus that processed Commands asynchronously from the calling thread.
|
class |
SimpleCommandBus
Implementation of the CommandBus that dispatches commands to the handlers subscribed to that specific command's name.
|
| Modifier and Type | Method and Description |
|---|---|
Registration |
AnnotationCommandHandlerAdapter.subscribe(CommandBus commandBus)
Subscribe this command handler to the given
commandBus. |
Registration |
AggregateAnnotationCommandHandler.subscribe(CommandBus commandBus)
Subscribe this command handler to the given
commandBus. |
| Modifier and Type | Class and Description |
|---|---|
class |
DisruptorCommandBus
Asynchronous CommandBus implementation with very high performance characteristics.
|
| Modifier and Type | Class and Description |
|---|---|
class |
DistributedCommandBus
Implementation of a
CommandBus that is aware of multiple instances of a CommandBus working together to
spread load. |
| Modifier and Type | Method and Description |
|---|---|
CommandBus |
AbstractCommandGateway.getCommandBus()
Returns the CommandBus used by this gateway.
|
| Modifier and Type | Method and Description |
|---|---|
DefaultCommandGateway.Builder |
DefaultCommandGateway.Builder.commandBus(CommandBus commandBus) |
AbstractCommandGateway.Builder |
AbstractCommandGateway.Builder.commandBus(CommandBus commandBus)
Sets the
CommandBus used to dispatch commands. |
| Constructor and Description |
|---|
CommandGatewayFactory(CommandBus commandBus,
MessageDispatchInterceptor<CommandMessage<?>>... dispatchInterceptors)
Initialize the factory sending Commands to the given
commandBus, optionally intercepting them with
given dispatchInterceptors. |
CommandGatewayFactory(CommandBus commandBus,
RetryScheduler retryScheduler,
List<MessageDispatchInterceptor<CommandMessage<?>>> messageDispatchInterceptors)
Initialize the factory sending Commands to the given
commandBus, optionally intercepting them with
given dispatchInterceptors. |
CommandGatewayFactory(CommandBus commandBus,
RetryScheduler retryScheduler,
MessageDispatchInterceptor<CommandMessage<?>>... messageDispatchInterceptors)
Initialize the factory sending Commands to the given
commandBus, optionally intercepting them with
given dispatchInterceptors. |
RetryingCallback(CommandCallback<C,R> delegate,
RetryScheduler retryScheduler,
CommandBus commandBus)
Initialize the RetryingCallback with the given
delegate, representing the actual callback passed as
a parameter to dispatch, the given commandMessage, retryScheduler and
commandBus. |
| Modifier and Type | Method and Description |
|---|---|
default CommandBus |
Configuration.commandBus()
Returns the Command Bus defined in this Configuration.
|
protected CommandBus |
DefaultConfigurer.defaultCommandBus(Configuration config)
Provides the default CommandBus implementation.
|
| Modifier and Type | Method and Description |
|---|---|
default Configurer |
Configurer.configureCommandBus(Function<Configuration,CommandBus> commandBusBuilder)
Configures the given Command Bus to use in this configuration.
|
Copyright © 2010–2018. All rights reserved.