SleepMode

ox.scheduling.SleepMode
enum SleepMode

The mode that specifies how to interpret the duration provided by the schedule.

Attributes

Graph
Supertypes
trait Enum
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Type members

Enum entries

case case Delay extends SleepMode

Delay (since the end of the last operation), i.e. sleeps the duration provided by the schedule before the next operation starts.

Delay (since the end of the last operation), i.e. sleeps the duration provided by the schedule before the next operation starts.

Attributes

case case Interval extends SleepMode

Interval (since the start of the last operation), i.e. guarantees that the next operation will start no sooner than the specified duration after the previous operation has started. If the previous operation takes longer than the interval, the next operation will be started immediately after the previous one has finished.

Interval (since the start of the last operation), i.e. guarantees that the next operation will start no sooner than the specified duration after the previous operation has started. If the previous operation takes longer than the interval, the next operation will be started immediately after the previous one has finished.

Attributes