Class FixedRateTask
java.lang.Object
org.springframework.scheduling.config.Task
org.springframework.scheduling.config.IntervalTask
org.springframework.scheduling.config.FixedRateTask
Specialization of 
IntervalTask for fixed-rate semantics.- Since:
 - 5.0.2
 - Author:
 - Juergen Hoeller
 - See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionFixedRateTask(Runnable runnable, long interval, long initialDelay) Create a newFixedRateTask. - 
Method Summary
Methods inherited from class org.springframework.scheduling.config.IntervalTask
getInitialDelay, getIntervalMethods inherited from class org.springframework.scheduling.config.Task
getRunnable, toString 
- 
Constructor Details
- 
FixedRateTask
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
 
 -