adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / JobExecutionOptions Enumeration


In This Topic
    JobExecutionOptions Enumeration
    In This Topic
    Specifies options that control execution of a job.
    Syntax
    'Declaration
     
    
    <ComVisibleAttribute(True)>
    <GuidAttribute("78862BE9-54AA-4223-99B5-35E5AF2A4F86")>
    <FlagsAttribute()>
    Public Enum JobExecutionOptions 
       Inherits System.Enum
    [ComVisible(true)]
    [Guid("78862BE9-54AA-4223-99B5-35E5AF2A4F86")]
    [Flags()]
    public enum JobExecutionOptions : System.Enum 
    [ComVisible(true)]
    [Guid("78862BE9-54AA-4223-99B5-35E5AF2A4F86")]
    [Flags()]
    public enum class JobExecutionOptions : public System.Enum 
    Members
    MemberValueDescription
    ForceNewInstance4 A new instance of the job will be started even if the job's AlreadyRunningBehavior says otherwise.
    ForceRunOnMaster32 Runs the job on the Master even if the Queue is not configured to run on the Master.
    IgnoreJobConditions1 Conditions for the job will be ignored.
    IgnoreQueueLimits512 Ignore all limits for the queue and force the job to regardless.
    IgnoreStepConditions2 Conditions for steps will be ignored.
    NoJobControlResponses2048 Suppresses all job control responses defined for the job and step(s); other responses run normally.
    None0 No special options specified.
    NoResponses128 Suppresses all responses defined for the job and step(s).
    RunOnMasterOnly1024 The job will be not be run on Agents associated with the Queue. It will be run on the Master even if the Master is not selected for the Queue.
    RunOnSameAgentOnly4096 When used with a Job Control Action, the action targets the job only on the same Agent as the caller.
    SelectedStepOnly64 Runs only the specified step (does not continue with additional steps).
    Inheritance Hierarchy

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

    See Also