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. 
 

Uses of CommandHandler in org.axonframework.commandhandling
 

Methods in org.axonframework.commandhandling with parameters of type CommandHandler
<C> void
CommandBus.subscribe(Class<C> commandType, CommandHandler<? super C> handler)
          Subscribe the given handler to commands of type commandType.
<T> void
SimpleCommandBus.subscribe(Class<T> commandType, CommandHandler<? super T> handler)
          Subscribe the given handler to commands of type commandType.
<C> void
CommandBus.unsubscribe(Class<C> commandType, CommandHandler<? super C> handler)
          Unsubscribe the given handler to commands of type commandType.
<T> void
SimpleCommandBus.unsubscribe(Class<T> commandType, CommandHandler<? super T> handler)
          Unsubscribe the given handler to commands of type commandType.
 

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.
 



Copyright © 2011. All Rights Reserved.