Uses of Interface
org.springframework.core.retry.RetryOperations
Packages that use RetryOperations
Package
Description
Main package for the core retry functionality.
Support package for the core retry functionality.
-
Uses of RetryOperations in org.springframework.core.retry
Classes in org.springframework.core.retry that implement RetryOperationsModifier and TypeClassDescriptionclassA basic implementation ofRetryOperationsthat executes and potentially retries aRetryableoperation based on a configuredRetryPolicy. -
Uses of RetryOperations in org.springframework.core.retry.support
Methods in org.springframework.core.retry.support with parameters of type RetryOperationsModifier and TypeMethodDescriptionstatic RunnableRetryTask.wrap(Runnable task, RetryOperations retryTemplate) Wrap the given targetRunnableinto a retryingRunnable.static <V> Callable<V> RetryTask.wrap(Callable<V> task, RetryOperations retryTemplate) Wrap the given targetCallableinto a retryingCallable.Constructors in org.springframework.core.retry.support with parameters of type RetryOperationsModifierConstructorDescriptionRetryTask(TaskCallback<V, E> task, RetryOperations retryTemplate) Create a newRetryTaskfor the given retryable task.