|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use CommandBus | |
---|---|
org.axonframework.commandhandling | Classes that implement the concept of command handling using explicit command objects. |
org.axonframework.commandhandling.annotation | Classes that provide annotation support for command handling. |
org.axonframework.commandhandling.disruptor | |
org.axonframework.commandhandling.distributed | |
org.axonframework.commandhandling.distributed.jgroups | |
org.axonframework.commandhandling.gateway | |
org.axonframework.test | Classes in support of testing Axon based applications. |
org.axonframework.test.utils | A collection of classes which may prove useful when testing Axon-based classes. |
Uses of CommandBus in org.axonframework.commandhandling |
---|
Classes in org.axonframework.commandhandling that implement CommandBus | |
---|---|
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 type of command. |
Uses of CommandBus in org.axonframework.commandhandling.annotation |
---|
Methods in org.axonframework.commandhandling.annotation with parameters of type CommandBus | ||
---|---|---|
void |
AnnotationCommandHandlerBeanPostProcessor.setCommandBus(CommandBus commandBus)
Sets the event bus to which detected event listeners should be subscribed. |
|
void |
AggregateAnnotationCommandHandlerFactoryBean.setCommandBus(CommandBus commandBus)
Sets the CommandBus to subscribe the handler to |
|
static void |
AggregateAnnotationCommandHandler.subscribe(AggregateAnnotationCommandHandler<?> aggregateAnnotationCommandHandler,
CommandBus commandBus)
Subscribe the given aggregateAnnotationCommandHandler to the given commandBus . |
|
static void |
AnnotationCommandHandlerAdapter.subscribe(AnnotationCommandHandlerAdapter annotationCommandHandler,
CommandBus commandBus)
Subscribe the given annotationCommandHandler to the given commandBus . |
|
static
|
AggregateAnnotationCommandHandler.subscribe(Class<T> aggregateType,
Repository<T> repository,
CommandBus commandBus)
Subscribe a handler for the given aggregate type to the given command bus. |
|
static
|
AggregateAnnotationCommandHandler.subscribe(Class<T> aggregateType,
Repository<T> repository,
CommandBus commandBus,
CommandTargetResolver commandTargetResolver)
Subscribe a handler for the given aggregate type to the given command bus. |
|
static AnnotationCommandHandlerAdapter |
AnnotationCommandHandlerAdapter.subscribe(Object annotatedCommandHandler,
CommandBus commandBus)
Subscribe the annotated command handler to the given command bus. |
Uses of CommandBus in org.axonframework.commandhandling.disruptor |
---|
Classes in org.axonframework.commandhandling.disruptor that implement CommandBus | |
---|---|
class |
DisruptorCommandBus
Asynchronous CommandBus implementation with very high performance characteristics. |
Uses of CommandBus in org.axonframework.commandhandling.distributed |
---|
Classes in org.axonframework.commandhandling.distributed that implement CommandBus | |
---|---|
class |
DistributedCommandBus
Implementation of a CommandBus that is aware of multiple instances of a CommandBus working together to
spread load. |
Uses of CommandBus in org.axonframework.commandhandling.distributed.jgroups |
---|
Methods in org.axonframework.commandhandling.distributed.jgroups with parameters of type CommandBus | |
---|---|
void |
JGroupsConnectorFactoryBean.setLocalSegment(CommandBus localSegment)
Sets the CommandBus instance on which local commands must be dispatched. |
Constructors in org.axonframework.commandhandling.distributed.jgroups with parameters of type CommandBus | |
---|---|
JGroupsConnector(org.jgroups.JChannel channel,
String clusterName,
CommandBus localSegment,
Serializer serializer)
Initializes the Connector using given resources. |
|
JGroupsConnector(org.jgroups.JChannel channel,
String clusterName,
CommandBus localSegment,
Serializer serializer,
HashChangeListener hashChangeListener)
Initializes the Connector using given resources. |
Uses of CommandBus in org.axonframework.commandhandling.gateway |
---|
Methods in org.axonframework.commandhandling.gateway with parameters of type CommandBus | |
---|---|
void |
CommandGatewayFactoryBean.setCommandBus(CommandBus commandBus)
Sets the command bus on which the Gateway must dispatch commands. |
Constructors in org.axonframework.commandhandling.gateway with parameters of type CommandBus | |
---|---|
AbstractCommandGateway(CommandBus commandBus,
RetryScheduler retryScheduler,
List<CommandDispatchInterceptor> commandDispatchInterceptors)
Initialize the AbstractCommandGateway with given commandBus , retryScheduler and
commandDispatchInterceptors . |
|
DefaultCommandGateway(CommandBus commandBus,
CommandDispatchInterceptor... commandDispatchInterceptors)
Initializes a command gateway that dispatches commands to the given commandBus after they have been
handles by the given commandDispatchInterceptors . |
|
DefaultCommandGateway(CommandBus commandBus,
RetryScheduler retryScheduler,
CommandDispatchInterceptor... commandDispatchInterceptors)
Initializes a command gateway that dispatches commands to the given commandBus after they have been
handles by the given commandDispatchInterceptors . |
|
DefaultCommandGateway(CommandBus commandBus,
RetryScheduler retryScheduler,
List<CommandDispatchInterceptor> commandDispatchInterceptors)
Initializes a command gateway that dispatches commands to the given commandBus after they have been
handles by the given commandDispatchInterceptors . |
|
GatewayProxyFactory(CommandBus commandBus,
CommandDispatchInterceptor... dispatchInterceptors)
Initialize the factory sending Commands to the given commandBus , optionally intercepting them with
given dispatchInterceptors . |
|
GatewayProxyFactory(CommandBus commandBus,
RetryScheduler retryScheduler,
CommandDispatchInterceptor... commandDispatchInterceptors)
Initialize the factory sending Commands to the given commandBus , optionally intercepting them with
given dispatchInterceptors . |
|
GatewayProxyFactory(CommandBus commandBus,
RetryScheduler retryScheduler,
List<CommandDispatchInterceptor> commandDispatchInterceptors)
Initialize the factory sending Commands to the given commandBus , optionally intercepting them with
given dispatchInterceptors . |
|
RetryingCallback(CommandCallback<R> delegate,
CommandMessage commandMessage,
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 . |
Uses of CommandBus in org.axonframework.test |
---|
Methods in org.axonframework.test that return CommandBus | |
---|---|
CommandBus |
GivenWhenThenTestFixture.getCommandBus()
|
CommandBus |
FixtureConfiguration.getCommandBus()
Returns the command bus used by this fixture. |
Uses of CommandBus in org.axonframework.test.utils |
---|
Classes in org.axonframework.test.utils that implement CommandBus | |
---|---|
class |
RecordingCommandBus
CommandBus implementation that does not perform any actions on subscriptions or dispatched commands, but records them instead. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |