Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Represents the current state of a job or assessment execution.
Syntax
enum ExecutionState {
None = 0,
NotYetRun = 1,
Running = 2,
Completed = 3
};
Constants
-
None
-
No state is specified. This is an invalid state.
-
NotYetRun
-
The OnJobBegin callback for the job or OnAssessmentBegin callback for the assessment has not yet been called.
-
Running
-
The job or assessment has been started. The corresponding OnJobBegin or OnAssessmentBegin callback has been called, but the OnJobEnd or OnAssessmentEnd callback has not been called yet.
-
Completed
-
The job or assessment has been completed. The OnJobEnd or OnAssessmentEnd callback for the object has been called.
Requirements
Minimum supported client |
Windows 7 [desktop apps only] |
Minimum supported server |
Windows Server 2008 R2 [desktop apps only] |
Header |
|