adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / AlreadyRunningBehavior Enumeration


In This Topic
    AlreadyRunningBehavior Enumeration
    In This Topic
    Determines how the job behaves if another instance is already running.
    Syntax
    'Declaration
     
    
    <ComVisibleAttribute(True)>
    <GuidAttribute("836817CA-4A18-4C54-BBF7-40980C6468D1")>
    Public Enum AlreadyRunningBehavior 
       Inherits System.Enum
    [ComVisible(true)]
    [Guid("836817CA-4A18-4C54-BBF7-40980C6468D1")]
    public enum AlreadyRunningBehavior : System.Enum 
    [ComVisible(true)]
    [Guid("836817CA-4A18-4C54-BBF7-40980C6468D1")]
    public enum class AlreadyRunningBehavior : public System.Enum 
    Members
    MemberValueDescription
    Run4 A new instance is started even if a previous instance is still running.
    Skip1 The job is skipped (a new instance is not started).
    TerminatePrevious5 Terminate previous instances and then run. Wait for the timeout period, if specified.
    WaitThenRun3 adTempus waits for the specified period, then starts a new instance even if a previous instance is still running.
    WaitThenSkip2 adTempus waits for the specified period, then skips the job if a previous instance is still running.
    Inheritance Hierarchy

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

    See Also