Class FixedRateTask
java.lang.Object
org.springframework.scheduling.config.Task
org.springframework.scheduling.config.DelayedTask
org.springframework.scheduling.config.IntervalTask
org.springframework.scheduling.config.FixedRateTask
Specialization of 
IntervalTask for fixed-rate semantics.- Since:
 - 5.0.2
 - Author:
 - Juergen Hoeller, Arjen Poutsma
 - See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionFixedRateTask(Runnable runnable, long interval, long initialDelay) Deprecated.FixedRateTask(Runnable runnable, Duration interval, Duration initialDelay) Create a newFixedRateTask. - 
Method Summary
Methods inherited from class org.springframework.scheduling.config.IntervalTask
getInitialDelay, getInitialDelayDuration, getInterval, getIntervalDurationMethods inherited from class org.springframework.scheduling.config.Task
getRunnable, toString 
- 
Constructor Details
- 
FixedRateTask
Deprecated.as of 6.0, in favor onFixedRateTask(Runnable, Duration, Duration)Create a newFixedRateTask.- 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
 - 
FixedRateTask
Create a newFixedRateTask.- Parameters:
 runnable- the underlying task to executeinterval- how often the task should be executedinitialDelay- the initial delay before first execution of the task- Since:
 - 6.0
 
 
 - 
 
FixedRateTask(Runnable, Duration, Duration)