Enum SchedulerMessageKind

File: src/scheduler/SchedulerMessage.msg

Enum for different SchedulerEvent messages

See also: SchedulerEvent

Author: Till Steinbach

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram. Click here to see the full picture.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.

Source code:

//
// 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;
}