adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / StepExecutionSequence Enumeration


In This Topic
    StepExecutionSequence Enumeration
    In This Topic
    Determines how steps within the job are executed.
    Syntax
    'Declaration
     
    
    <ComVisibleAttribute(True)>
    <GuidAttribute("CA32F972-E214-4522-9F82-75B30865D337")>
    Public Enum StepExecutionSequence 
       Inherits System.Enum
    [ComVisible(true)]
    [Guid("CA32F972-E214-4522-9F82-75B30865D337")]
    public enum StepExecutionSequence : System.Enum 
    [ComVisible(true)]
    [Guid("CA32F972-E214-4522-9F82-75B30865D337")]
    public enum class StepExecutionSequence : public System.Enum 
    Members
    MemberValueDescription
    ExecuteAll1 All steps are executed in sequence, regardless of the result of each step. Responses may change the execution sequence.
    ExecuteFirst2 adTempus executes the first steps. Subsequent steps are executed only if the job explicitly runs them using Responses.
    ExecuteUntilFailure0 Execute steps in sequence. If a step fails, the job ends with a failure result. Responses may change the execution sequence.
    Inheritance Hierarchy

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

    See Also