Class FixedDelayTask
- java.lang.Object
- org.springframework.scheduling.config.Task
- org.springframework.scheduling.config.IntervalTask
- org.springframework.scheduling.config.FixedDelayTask
public class FixedDelayTask extends IntervalTask
Specialization ofIntervalTaskfor fixed-delay semantics.- Since:
- 5.0.2
- Author:
- Juergen Hoeller
- See Also:
Scheduled.fixedDelay(),ScheduledTaskRegistrar.addFixedDelayTask(IntervalTask)
Constructor Summary
Constructors Constructor Description FixedDelayTask(Runnable runnable, long interval, long initialDelay)Create a newFixedDelayTask.
Method Summary
Methods inherited from class org.springframework.scheduling.config.IntervalTask
getInitialDelay, getInterval
Methods inherited from class org.springframework.scheduling.config.Task
getRunnable, toString
Constructor Detail
FixedDelayTask
public FixedDelayTask(Runnable runnable, long interval, long initialDelay)
Create a newFixedDelayTask.- Parameters:
runnable- the underlying task to executeinterval- how often in milliseconds the task should be executedinitialDelay- the initial delay before first execution of the task