Determines how the job behaves if another instance is already running.
enum AlreadyRunningBehaviorEnum { arbSkip = 1, arbWaitThenSkip, arbWaitThenRun, arbRun };
public enum AlreadyRunningBehaviorEnum { arbSkip = 1, arbWaitThenSkip, arbWaitThenRun, arbRun }
Public Enum AlreadyRunningBehaviorEnum arbSkip = 1 arbWaitThenSkip arbWaitThenRun arbRun End Enum
Members |
Description |
arbSkip = 1 |
The job is skipped (a new instance is not started). |
arbWaitThenSkip |
adTempus waits for the specified period, then skips the job if a previous instance is still running. |
arbWaitThenRun |
adTempus waits for the specified period, then starts a new instance even if a previous instance is still running. |
arbRun |
A new instance is started even if a previous instance is still running. |
adTempus API Reference version 3.0.0.0, revised 10/30/2008
|