adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / RestartOptions Enumeration


In This Topic
    RestartOptions Enumeration
    In This Topic
    Options that control how a job is restarted if it is missed or abandoned.
    Syntax
    'Declaration
     
    
    <ComVisibleAttribute(True)>
    <GuidAttribute("8EEB361F-F195-4E04-9BCF-860FBFE62E1F")>
    <FlagsAttribute()>
    Public Enum RestartOptions 
       Inherits System.Enum
    [ComVisible(true)]
    [Guid("8EEB361F-F195-4E04-9BCF-860FBFE62E1F")]
    [Flags()]
    public enum RestartOptions : System.Enum 
    [ComVisible(true)]
    [Guid("8EEB361F-F195-4E04-9BCF-860FBFE62E1F")]
    [Flags()]
    public enum class RestartOptions : public System.Enum 
    Members
    MemberValueDescription
    RestartFromBeginning8 Valid only when RunOnStartupIfCleanShutdown or RunOnStartupIfDirtyShutdown is specified: the job restarts from the beginning.
    RestartFromLastStep16 Valid only when RunOnStartupIfCleanShutdown or RunOnStartupIfDirtyShutdown is specified: the job restarts from the beginning of the step that was executing when the service shut down.
    RestartFromNextStep64 Valid only when RunOnStartupIfCleanShutdown or RunOnStartupIfDirtyShutdown is specified: the job restarts from the beginning of the step after the step that was executing when the service shut down.
    RunOnStartupIfCleanShutdown2 The job is restarted when adTempus starts if the adTempus service was stopped (using the service control manager) while the job was running.
    RunOnStartupIfDirtyShutdown4 The job is restarted when adTempus starts if the adTempus service terminated unexpectedly (e.g., due to an application or system failure) while the job was running.
    RunOnStartupIfMissed1 The job is run when adTempus starts if a scheduled execution was missed because adTempus was not running.
    UseCheckpoint32 Valid only when RunOnStartupIfCleanShutdown or RunOnStartupIfDirtyShutdown is specified: the most recent checkpoint set by the job is passed to the new instance.
    Inheritance Hierarchy

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

    See Also