public abstract static class AbstractScheduledService.Scheduler extends Object
AbstractScheduledService
should run its
task.
Consider using the newFixedDelaySchedule(long, long, java.util.concurrent.TimeUnit)
and newFixedRateSchedule(long, long, java.util.concurrent.TimeUnit)
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
.
Modifier and Type | Method and Description |
---|---|
static AbstractScheduledService.Scheduler |
newFixedDelaySchedule(long initialDelay,
long delay,
TimeUnit unit)
Returns a
AbstractScheduledService.Scheduler that schedules the task using the ScheduledExecutorService.scheduleWithFixedDelay(java.lang.Runnable, long, long, java.util.concurrent.TimeUnit) method. |
static AbstractScheduledService.Scheduler |
newFixedRateSchedule(long initialDelay,
long period,
TimeUnit unit)
Returns a
AbstractScheduledService.Scheduler that schedules the task using the ScheduledExecutorService.scheduleAtFixedRate(java.lang.Runnable, long, long, java.util.concurrent.TimeUnit) method. |
public 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(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.