Determines how a job behaves if one or more resources cannot be connected or allocated.
enum ResourceFailureActionEnum { rfaFail = 1, rfaWaitThenFail, rfaWaitThenRun, rfaRun };
public enum ResourceFailureActionEnum { rfaFail = 1, rfaWaitThenFail, rfaWaitThenRun, rfaRun }
Public Enum ResourceFailureActionEnum rfaFail = 1 rfaWaitThenFail rfaWaitThenRun rfaRun End Enum
Members |
Description |
rfaFail = 1 |
The job fails. |
rfaWaitThenFail |
adTempus waits for the specified time, then fails the job if the resources still cannot be allocated. |
rfaWaitThenRun |
adTempus waits for the specified time, then runs the job even if the resources still cannot be allocated. |
rfaRun |
The job is run (the resource failure is ignored). |
adTempus API Reference version 3.0.0.0, revised 10/30/2008
|