JobControlActionType Enumeration
 
            
                In This Topic
            
            
            Syntax
            
            Members
| Member | Value | Description | 
| FailJob | 6 | 
            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)
             | 
| FailStep | 11 | 
            Sets the step's status to "Failed".
             | 
| HoldJob | 1 | 
            The action holds a job.
             | 
| ReleaseJob | 9 | 
            Releases ("unholds") a job.
             | 
| RestartJob | 4 | 
            The action restarts a job.
             | 
| RestartStep | 13 | 
            Restarts the step
             | 
| RunJob | 3 | 
            The action runs a job.
             | 
| RunStep | 8 | 
            Runs another step in the same job.
             | 
| StopExecutingSteps | 5 | 
            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.
             | 
| SucceedJob | 7 | 
            Sets the job's status to "Succeeded", regardless of the outcome of the job's steps.
             | 
| SucceedStep | 10 | 
            Sets the step's status to "Succeeded".
             | 
| TerminateJob | 12 | 
            Terminates (aborts) a job.
             | 
| Undefined | 0 | 
            Undefined/Unknown
             | 
 
            
            
            
            
            
            
            Inheritance Hierarchy
System.Object
   System.ValueType
      System.Enum
         ArcanaDevelopment.adTempus.Shared.JobControlActionType
 
            
            
            See Also