Table of Contents

Enum AgentState

Namespace
Prefrontal
Assembly
Prefrontal.Core.dll

The current state of the agent. Agents start in the Uninitialized state. Calling Initialize()/InitializeAsync() sets the state to Initializing while modules are being initialized and to Initialized when they are done. Calling Dispose() sets the state to Disposing while modules are being disposed of and to Disposed when done.

public enum AgentState
Extension Methods

Fields

Disposed = 4
Disposing = 3
Initialized = 2
Initializing = 1
Uninitialized = 0

See Also