Specifies the status of the Engine.
Namespace:
Dundas.BI
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax [EditorBrowsableAttribute(EditorBrowsableState.Advanced)]
public enum EngineState
<EditorBrowsableAttribute(EditorBrowsableState.Advanced)>
Public Enumeration EngineState
[EditorBrowsableAttribute(EditorBrowsableState::Advanced)]
public enum class EngineState
[<EditorBrowsableAttribute(EditorBrowsableState.Advanced)>]
type EngineState
Members
| Member name | Value | Description |
---|
| Stopped | 0 | The Engine has been shut down or has not been created. |
| Stopping | 1 | The Engine is in the process of shutting down. |
| Started | 2 | The Engine has been started and is running normally. |
| Initialized | 3 | The Engine is in the process of starting. |
| Created | 4 | The Engine has been created but not started. |
Remarks
Additional notes:
Field | Notes |
---|
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