|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use RetryScheduler | |
---|---|
org.axonframework.commandhandling.gateway |
Uses of RetryScheduler in org.axonframework.commandhandling.gateway |
---|
Classes in org.axonframework.commandhandling.gateway that implement RetryScheduler | |
---|---|
class |
IntervalRetryScheduler
RetryScheduler implementation that retries commands at regular intervals when they fail because of an exception that is not explicitly non-transient. |
Methods in org.axonframework.commandhandling.gateway with parameters of type RetryScheduler | |
---|---|
void |
CommandGatewayFactoryBean.setRetryScheduler(RetryScheduler retryScheduler)
Sets the RetryScheduler that will be invoked when a command fails execution. |
Constructors in org.axonframework.commandhandling.gateway with parameters of type RetryScheduler | |
---|---|
AbstractCommandGateway(CommandBus commandBus,
RetryScheduler retryScheduler,
List<CommandDispatchInterceptor> commandDispatchInterceptors)
Initialize the AbstractCommandGateway with given commandBus , retryScheduler and
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,
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 . |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |