Class ScheduledTask
java.lang.Object
org.springframework.scheduling.config.ScheduledTask
A representation of a scheduled task at runtime,
used as a return value for scheduling methods.
- Since:
- 4.3
- Author:
- Juergen Hoeller
- See Also:
-
Method Details
-
getTask
- Since:
- 5.0.2
-
cancel
public void cancel()Trigger cancellation of this scheduled task.This variant will force interruption of the task if still running.
- See Also:
-
cancel
public void cancel(boolean mayInterruptIfRunning) Trigger cancellation of this scheduled task.- Parameters:
mayInterruptIfRunning
- whether to force interruption of the task if still running (specifyfalse
to allow the task to complete)- Since:
- 5.3.18
- See Also:
-
toString
-