Uses of Interface
org.axonframework.commandhandling.gateway.RetryScheduler
Packages that use RetryScheduler
-
Uses of RetryScheduler in org.axonframework.commandhandling.gateway
Classes in org.axonframework.commandhandling.gateway that implement RetrySchedulerModifier and TypeClassDescriptionclassAn abstract base class forRetrySchedulers.classA RetryScheduler that uses a backoff strategy, retrying commands at increasing intervals when they fail because of an exception that is not explicitly non-transient.classRetryScheduler 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 RetrySchedulerModifier and TypeMethodDescriptionAbstractCommandGateway.Builder.retryScheduler(RetryScheduler retryScheduler) Sets theRetrySchedulercapable of performing retries of failed commands.CommandGatewayFactory.Builder.retryScheduler(RetryScheduler retryScheduler) Sets theRetrySchedulerwhich will decide whether to reschedule commands.DefaultCommandGateway.Builder.retryScheduler(RetryScheduler retryScheduler) Constructors in org.axonframework.commandhandling.gateway with parameters of type RetrySchedulerModifierConstructorDescriptionRetryingCallback(CommandCallback<C, R> delegate, RetryScheduler retryScheduler, CommandBus commandBus) Initialize the RetryingCallback with the givendelegate, representing the actual callback passed as a parameter to dispatch, the givencommandMessage,retrySchedulerandcommandBus.