| Package | Description |
|---|---|
| org.lsst.ccs.utilities.scheduler |
Customized scheduling executor and related classes.
|
| Modifier and Type | Method and Description |
|---|---|
PeriodicTask |
Scheduler.scheduleAtFixedRate(Runnable command,
long initialDelay,
long period,
TimeUnit unit)
Creates and executes a fixedRate action that becomes enabled first after
the given initial delay, and subsequently with the given period.
|
PeriodicTask |
Scheduler.scheduleAtFixedRate(Runnable command,
long initialDelay,
long period,
TimeUnit unit,
String taskName,
Level logLevel)
Creates and executes a fixedRate action that becomes enabled first after
the given initial delay, and subsequently with the given period.
|
PeriodicTask |
Scheduler.scheduleWithFixedDelay(Runnable command,
long initialDelay,
long delay,
TimeUnit unit)
Creates and executes a fixedRate action that becomes enabled first after
the given initial delay, and subsequently with the given delay between
the termination of one execution and the commencement of the next.
|
PeriodicTask |
Scheduler.scheduleWithFixedDelay(Runnable command,
long initialDelay,
long delay,
TimeUnit unit,
String taskName,
Level logLevel)
Creates and executes a fixedRate action that becomes enabled first after
the given initial delay, and subsequently with the given delay between
the termination of one execution and the commencement of the next.
|
Copyright © 2018 LSST. All rights reserved.