ScheduledExecutorTask()
Create a new ScheduledExecutorTask, to be populated via bean properties.
See Also
#setDelay#setPeriod#setFixedRate
ScheduledExecutorTask(executorTask: Runnable)
Create a new ScheduledExecutorTask, with default one-time execution without delay.
executorTask - the Runnable to schedule
ScheduledExecutorTask(executorTask: Runnable, delay: Long)
Create a new ScheduledExecutorTask, with default one-time execution with the given delay.
executorTask - the Runnable to schedule
delay - the delay before starting the task for the first time (ms)
ScheduledExecutorTask(executorTask: Runnable, delay: Long, period: Long, fixedRate: Boolean)
Create a new ScheduledExecutorTask.
executorTask - the Runnable to schedule
delay - the delay before starting the task for the first time (ms)