Uses of Interface
org.springframework.core.task.TaskCallback
Packages that use TaskCallback
Package
Description
Support package for the core retry functionality.
This package defines Spring's core TaskExecutor abstraction,
and provides SyncTaskExecutor and SimpleAsyncTaskExecutor implementations.
-
Uses of TaskCallback in org.springframework.core.retry.support
Classes in org.springframework.core.retry.support that implement TaskCallbackModifier and TypeClassDescriptionclassATaskCallbackthat executes a given retryable task, re-executing it after failure according to a retry policy.Constructors in org.springframework.core.retry.support with parameters of type TaskCallbackModifierConstructorDescriptionRetryTask(TaskCallback<V, E> task) Create a newRetryTaskfor the given retryable task.RetryTask(TaskCallback<V, E> task, RetryOperations retryTemplate) Create a newRetryTaskfor the given retryable task.RetryTask(TaskCallback<V, E> task, RetryPolicy retryPolicy) Create a newRetryTaskfor the given retryable task. -
Uses of TaskCallback in org.springframework.core.task
Methods in org.springframework.core.task that return TaskCallbackModifier and TypeMethodDescriptionstatic TaskCallback<@Nullable Void, RuntimeException> Derive aTaskCallbackfrom the givenRunnable.static <V> TaskCallback<V, Exception> Derive aTaskCallbackfrom the givenCallable.Methods in org.springframework.core.task with parameters of type TaskCallback