adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / ClockChangeBehavior Enumeration


In This Topic
    ClockChangeBehavior Enumeration
    In This Topic
    Defines options that determine how a job will be affected if the system clock is changed.
    Syntax
    'Declaration
     
    
    <ComVisibleAttribute(True)>
    <GuidAttribute("332203E1-C39D-47C4-B46D-89F4B28E4430")>
    <FlagsAttribute()>
    Public Enum ClockChangeBehavior 
       Inherits System.Enum
    [ComVisible(true)]
    [Guid("332203E1-C39D-47C4-B46D-89F4B28E4430")]
    [Flags()]
    public enum ClockChangeBehavior : System.Enum 
    [ComVisible(true)]
    [Guid("332203E1-C39D-47C4-B46D-89F4B28E4430")]
    [Flags()]
    public enum class ClockChangeBehavior : public System.Enum 
    Members
    MemberValueDescription
    NoSpecialBehavior0 No special behavior (if clock is set back, job may run in the overlapping interval; if it is set forward, executions may be missed).
    RerunIfSetBack1 If the clock is set back, the job will be run again each time its scheduled time reoccurs. If this value is not specified, the "overlapping" times will not cause an execution.
    RunOnceIfSetForward2 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. If this value is not specified, the job will not be executed.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             ArcanaDevelopment.adTempus.Shared.ClockChangeBehavior

    See Also