ExecutionState enumeration

[This documentation is preliminary and is subject to change.]

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 “Begin” callback for the job (OnJobBegin) or assessment (OnAssessmentBegin) has not yet been called.

  • Running
    The job or assessment has been started. The corresponding “Begin” callback has been called, but the “End” callback has not been called yet.

  • Completed
    The job or assessment has been completed. The “End” event for the object has been called.

Requirements

Header

Engine.h

 

 

Build date: 9/6/2011