|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use CommandHandler | |
|---|---|
| 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 | |
| Uses of CommandHandler in org.axonframework.commandhandling |
|---|
| Methods in org.axonframework.commandhandling with parameters of type CommandHandler | ||
|---|---|---|
|
CommandBus.subscribe(String commandName,
CommandHandler<? super C> handler)
Subscribe the given handler to commands of type commandType. |
|
|
SimpleCommandBus.subscribe(String commandName,
CommandHandler<? super T> handler)
Subscribe the given handler to commands of type commandType. |
|
|
CommandBus.unsubscribe(String commandName,
CommandHandler<? super C> handler)
Unsubscribe the given handler to commands of type commandType. |
|
|
SimpleCommandBus.unsubscribe(String commandName,
CommandHandler<? super T> handler)
Unsubscribe the given handler to commands of type commandType. |
|
| Constructors in org.axonframework.commandhandling with parameters of type CommandHandler | |
|---|---|
DefaultInterceptorChain(CommandMessage<?> command,
UnitOfWork unitOfWork,
CommandHandler<?> handler,
Iterable<? extends CommandHandlerInterceptor> chain)
Initialize the default interceptor chain to dispatch the given command, through the
chain, to the handler. |
|
| Uses of CommandHandler in org.axonframework.commandhandling.annotation |
|---|
| Classes in org.axonframework.commandhandling.annotation that implement CommandHandler | |
|---|---|
class |
AnnotationCommandHandlerAdapter
Adapter that turns any @CommandHandler annotated bean into a CommandHandler implementation. |
| Uses of CommandHandler in org.axonframework.commandhandling.disruptor |
|---|
| Methods in org.axonframework.commandhandling.disruptor with parameters of type CommandHandler | ||
|---|---|---|
void |
CommandHandlingEntry.reset(CommandMessage<?> newCommand,
CommandHandler newCommandHandler,
int newInvokerSegmentId,
int newPublisherSegmentId,
int newSerializerSegmentId,
BlacklistDetectingCallback newCallback,
List<CommandHandlerInterceptor> invokerInterceptors,
List<CommandHandlerInterceptor> publisherInterceptors)
Resets this entry, preparing it for use for another command. |
|
|
DisruptorCommandBus.subscribe(String commandName,
CommandHandler<? super C> handler)
|
|
|
DisruptorCommandBus.unsubscribe(String commandName,
CommandHandler<? super C> handler)
|
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||