enum Earl::Agent::Status
Overview
The different statuses an agent can be in.
Defined in:
agent/state.crEnum Members
-
Starting =
0 -
Initial state. May return to this state after
Recycling. -
Running =
1 -
The agent was started and is still running. Previous state must be
Startingto be able to transition. -
Stopping =
2 -
The agent has been asked to stop. Previous state must be
Runningto be able to transition. -
Stopped =
3 -
The agent has stopped. Previous state must be
Stoppingto be able to transition. -
Crashed =
4 -
The agent has crashed (i.e. raised an exception). Previous state must be
Running,StoppingorCrashedto be able to transition. -
Recycling =
5 -
The agent has been told to recycle. Previous state must be
StoppedorCrashedto be able to transition.