Uses of Interface
org.axonframework.commandhandling.CommandDispatchInterceptor

Packages that use CommandDispatchInterceptor
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.commandhandling.interceptors Contains some useful implementations of interceptors that many application can benefit from. 
 

Uses of CommandDispatchInterceptor in org.axonframework.commandhandling
 

Method parameters in org.axonframework.commandhandling with type arguments of type CommandDispatchInterceptor
 void SimpleCommandBus.setDispatchInterceptors(List<? extends CommandDispatchInterceptor> dispatchInterceptors)
          Registers the given list of dispatch interceptors to the command bus.
 

Uses of CommandDispatchInterceptor in org.axonframework.commandhandling.disruptor
 

Methods in org.axonframework.commandhandling.disruptor that return types with arguments of type CommandDispatchInterceptor
 List<CommandDispatchInterceptor> DisruptorConfiguration.getDispatchInterceptors()
          Returns the dispatch interceptors for the DisruptorCommandBus.
 

Method parameters in org.axonframework.commandhandling.disruptor with type arguments of type CommandDispatchInterceptor
 DisruptorConfiguration DisruptorConfiguration.setDispatchInterceptors(List<CommandDispatchInterceptor> dispatchInterceptors)
          Configures the CommandDispatchInterceptor to use with the DisruptorCommandBus when commands are dispatched.
 

Uses of CommandDispatchInterceptor in org.axonframework.commandhandling.distributed
 

Method parameters in org.axonframework.commandhandling.distributed with type arguments of type CommandDispatchInterceptor
 void DistributedCommandBus.setCommandDispatchInterceptors(Collection<CommandDispatchInterceptor> newDispatchInterceptors)
          Sets the interceptors that intercept commands just prior to dispatching them.
 

Uses of CommandDispatchInterceptor in org.axonframework.commandhandling.gateway
 

Methods in org.axonframework.commandhandling.gateway with parameters of type CommandDispatchInterceptor
 GatewayProxyFactory GatewayProxyFactory.registerDispatchInterceptor(CommandDispatchInterceptor dispatchInterceptor)
          Registers the given dispatchInterceptor which is invoked for each Command dispatched through the Command Gateways created by this factory.
 void CommandGatewayFactoryBean.setCommandDispatchInterceptors(CommandDispatchInterceptor... commandDispatchInterceptors)
          Sets the interceptors that should be invoked before a command is dispatched the the Command Bus.
 

Method parameters in org.axonframework.commandhandling.gateway with type arguments of type CommandDispatchInterceptor
 void CommandGatewayFactoryBean.setCommandDispatchInterceptors(List<CommandDispatchInterceptor> commandDispatchInterceptors)
          Sets the interceptors that should be invoked before a command is dispatched the the Command Bus.
 

Constructors in org.axonframework.commandhandling.gateway with parameters of type CommandDispatchInterceptor
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.
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.
 

Constructor parameters in org.axonframework.commandhandling.gateway with type arguments of type CommandDispatchInterceptor
AbstractCommandGateway(CommandBus commandBus, RetryScheduler retryScheduler, List<CommandDispatchInterceptor> commandDispatchInterceptors)
          Initialize the AbstractCommandGateway with given commandBus, retryScheduler and 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, RetryScheduler retryScheduler, List<CommandDispatchInterceptor> commandDispatchInterceptors)
          Initialize the factory sending Commands to the given commandBus, optionally intercepting them with given dispatchInterceptors.
 

Uses of CommandDispatchInterceptor in org.axonframework.commandhandling.interceptors
 

Classes in org.axonframework.commandhandling.interceptors that implement CommandDispatchInterceptor
 class BeanValidationInterceptor
          Interceptor that applies JSR303 bean validation on incoming commands.
 



Copyright © 2010-2016. All Rights Reserved.