Uses of Interface
org.axonframework.commandhandling.CommandHandler

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
<C> void
CommandBus.subscribe(String commandName, CommandHandler<? super C> handler)
          Subscribe the given handler to commands of type commandType.
<T> void
SimpleCommandBus.subscribe(String commandName, CommandHandler<? super T> handler)
          Subscribe the given handler to commands of type commandType.
<C> boolean
CommandBus.unsubscribe(String commandName, CommandHandler<? super C> handler)
          Unsubscribe the given handler to commands of type commandType.
<T> boolean
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.
<C> void
DisruptorCommandBus.subscribe(String commandName, CommandHandler<? super C> handler)
           
<C> boolean
DisruptorCommandBus.unsubscribe(String commandName, CommandHandler<? super C> handler)
           
 



Copyright © 2010-2012. All Rights Reserved.