Defines options that determine how a job will be affected if the system clock is changed.
enum ClockChangeBehaviorEnum { ccbNoSpecialBehavior = 0, ccbRerunIfSetBack = 1, ccbRunOnceIfSetForward = 2 };
public enum ClockChangeBehaviorEnum { ccbNoSpecialBehavior = 0, ccbRerunIfSetBack = 1, ccbRunOnceIfSetForward = 2 }
Public Enum ClockChangeBehaviorEnum ccbNoSpecialBehavior = 0 ccbRerunIfSetBack = 1 ccbRunOnceIfSetForward = 2 End Enum
Members |
Description |
ccbNoSpecialBehavior = 0 |
No special behavior (if clock is set back, job may run in the overlapping interval; if it is set forward, executions may be missed). |
ccbRerunIfSetBack = 1 |
If the clock is set back, the job will be run again each time its scheduled time reoccurs. |
ccbRunOnceIfSetForward = 2 |
If the clock is set forward, the job will be run once if the clock is set forward such that a scheduled execution time is missed. |
adTempus API Reference version 3.0.0.0, revised 10/30/2008
|