adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / JobControlActionType Enumeration


In This Topic
    JobControlActionType Enumeration
    In This Topic
    Determines the action that a ArcanaDevelopment.adTempus.Client.JobControlAction takes.
    Syntax
    'Declaration
     
    
    <ComVisibleAttribute(True)>
    <GuidAttribute("66A82A64-7A6F-4F19-970C-BEBC9A0F969A")>
    Public Enum JobControlActionType 
       Inherits System.Enum
    [ComVisible(true)]
    [Guid("66A82A64-7A6F-4F19-970C-BEBC9A0F969A")]
    public enum JobControlActionType : System.Enum 
    [ComVisible(true)]
    [Guid("66A82A64-7A6F-4F19-970C-BEBC9A0F969A")]
    public enum class JobControlActionType : public System.Enum 
    Members
    MemberValueDescription
    FailJob6 Sets the job's status to "Failed", regardless of the outcome of the job's steps (steps may continue executing, however, depending on execution rules; add a second action using jcaStopExecutingSteps if you also want the job to stop at this point)
    FailStep11 Sets the step's status to "Failed".
    HoldJob1 The action holds a job.
    ReleaseJob9 Releases ("unholds") a job.
    RestartJob4 The action restarts a job.
    RestartStep13 Restarts the step
    RunJob3 The action runs a job.
    RunStep8 Runs another step in the same job.
    StopExecutingSteps5 The action causes adTempus to stop automatically executing the job's steps in sequence. Subsequent steps are run only if they are explicitly run using Responses.
    SucceedJob7 Sets the job's status to "Succeeded", regardless of the outcome of the job's steps.
    SucceedStep10 Sets the step's status to "Succeeded".
    TerminateJob12 Terminates (aborts) a job.
    Undefined0 Undefined/Unknown
    Inheritance Hierarchy

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

    See Also