__TimerInstruction

[This is preliminary documentation and subject to change.]

The __TimerInstruction system class is a base class used to specify instructions on how timer events should be generated for consumers. In practice, only instances of the two derived classes __AbsoluteTimerInstruction and __IntervalTimerInstruction are created.

class __TimerInstruction : __EventGenerator
{
    bool SkipIfPassed = FALSE;
    [key] string TimerId;
};class __TimerInstruction : __EventGenerator
 

Properties

SkipIfPassed
If the event is logically generated while the system is turned off or otherwise not available, this flag indicates whether a belated event should be generated or whether the event should simply be skipped.
TimerId
An arbitrary string identifying this particular timer. To avoid naming conflicts, the string form of a DCE-style GUID can be used.

See Also

Timer Events

__AbsoluteTimerInstruction, __IntervalTimerInstruction