public abstract static class AbstractScheduledService.Scheduler extends Object
AbstractScheduledService
should run its
task.
Consider using the newFixedDelaySchedule(java.time.Duration, java.time.Duration)
and newFixedRateSchedule(java.time.Duration, java.time.Duration)
factory
methods, these provide AbstractScheduledService.Scheduler
instances for the common use case of running the
service with a fixed schedule. If more flexibility is needed then consider subclassing AbstractScheduledService.CustomScheduler
.
public static AbstractScheduledService.Scheduler newFixedDelaySchedule(Duration initialDelay, Duration delay)
AbstractScheduledService.Scheduler
that schedules the task using the ScheduledExecutorService.scheduleWithFixedDelay(java.lang.Runnable, long, long, java.util.concurrent.TimeUnit)
method.initialDelay
- the time to delay first executiondelay
- the delay between the termination of one execution and the commencement of the
nextpublic static AbstractScheduledService.Scheduler newFixedDelaySchedule(long initialDelay, long delay, TimeUnit unit)
AbstractScheduledService.Scheduler
that schedules the task using the ScheduledExecutorService.scheduleWithFixedDelay(java.lang.Runnable, long, long, java.util.concurrent.TimeUnit)
method.initialDelay
- the time to delay first executiondelay
- the delay between the termination of one execution and the commencement of the
nextunit
- the time unit of the initialDelay and delay parameterspublic static AbstractScheduledService.Scheduler newFixedRateSchedule(Duration initialDelay, Duration period)
AbstractScheduledService.Scheduler
that schedules the task using the ScheduledExecutorService.scheduleAtFixedRate(java.lang.Runnable, long, long, java.util.concurrent.TimeUnit)
method.initialDelay
- the time to delay first executionperiod
- the period between successive executions of the taskpublic static AbstractScheduledService.Scheduler newFixedRateSchedule(long initialDelay, long period, TimeUnit unit)
AbstractScheduledService.Scheduler
that schedules the task using the ScheduledExecutorService.scheduleAtFixedRate(java.lang.Runnable, long, long, java.util.concurrent.TimeUnit)
method.initialDelay
- the time to delay first executionperiod
- the period between successive executions of the taskunit
- the time unit of the initialDelay and period parametersCopyright © 2010–2019. All rights reserved.