EngineState Enumeration

Specifies the status of the Engine.

Namespace:  Dundas.BI
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.1.0.1001)
Syntax
[EditorBrowsableAttribute(EditorBrowsableState.Advanced)]
public enum EngineState
Members
  Member nameValueDescription
Stopped0The Engine has been shut down or has not been created.
Stopping1The Engine is in the process of shutting down.
Started2The Engine has been started and is running normally.
Initialized3The Engine is in the process of starting.
Created4The Engine has been created but not started.
Remarks
Additional notes:
FieldNotes
Stopping The Engine enters this state immediately before the Stopping event is raised.
Initialized The Engine enters this state immediately after all registered services have been initialized, and immediately before the Started event is raised. See also: IRequireInitialization.
See Also