Uses of Interface
org.axonframework.messaging.core.retry.RetryPolicy
Packages that use RetryPolicy
-
Uses of RetryPolicy in org.axonframework.messaging.core.retry
Classes in org.axonframework.messaging.core.retry that implement RetryPolicyModifier and TypeClassDescriptionclassA RetryScheduler that uses a backoff strategy, doubling the retry delay after each attempt.classA RetryPolicy that delegates to another RetryPolicy when the latest exception matches a given predicate.classA retry policy that caps another policy to maximum number of retriesConstructors in org.axonframework.messaging.core.retry with parameters of type RetryPolicyModifierConstructorDescriptionAsyncRetryScheduler(RetryPolicy retryPolicy, ScheduledExecutorService executor) Initialize the retry scheduler using givenretryPolicyand execute retries on givenexecutor.FilteringRetryPolicy(RetryPolicy delegate, Predicate<Throwable> retryableErrorPredicate) Initializes a RetryPolicy to wrap givendelegateRetryPolicy when the latest failure matches the givenretryableErrorPredicateMaxAttemptsPolicy(RetryPolicy delegate, int retries) Wraps the givendelegate, enforcing the given maximum number ofretries