Enum for different SchedulerEvent messages
See also: SchedulerEvent
Author: Till Steinbach
The following diagram shows usage relationships between types. Unresolved types are missing from the diagram. Click here to see the full picture.
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.
// // Enum for different SchedulerEvent messages // // @see SchedulerEvent // // @author Till Steinbach enum SchedulerMessageKind { // Event that signals the beginning of a new cycle NEW_CYCLE = 0; // Event with a specified action time ACTION_TIME_EVENT = 1; // Event that is triggered after a specified amount of time TIMER_EVENT = 2; }