adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / JobExecutionTaskWaitType Enumeration


In This Topic
    JobExecutionTaskWaitType Enumeration
    In This Topic
    Determines wait rule for a JobExecutionTask
    Syntax
    'Declaration
     
    
    Public Enum JobExecutionTaskWaitType 
       Inherits System.Enum
    public enum JobExecutionTaskWaitType : System.Enum 
    public enum class JobExecutionTaskWaitType : public System.Enum 
    Members
    MemberValueDescription
    WaitAll2 Wait for all target jobs to complete
    WaitAny1 Wait for any target job to complete
    WaitAnySuccess3 Wait for any target job to complete successfully
    WaitEach4 Waits for each target job to complete before submitting the next. If a target job fails the remaining targets are not executed.
    WaitEachRunAll5 Waits for each target job to complete before submitting the next. If a target job fails the remaining targets are still executed.
    WaitNone0 Do not wait for target jobs to complete
    Inheritance Hierarchy

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

    See Also