class documentation

class LifecycleState(IntEnum):

View In Hierarchy

Represents the lifecycle state of an instance of machine, skill, component, etc.

Constant INITIALIZATION_FAILED Instance initialization failed and instance may need to be shut down.
Constant INITIALIZED Instance is initialized successfully and ready to be used.
Constant INITIALIZING Instance is currently (async) initializing.
Constant NEW Instance is created, but not (async) initialized.
Constant SHUTDOWN Instance is shut down successfully and cannot be used anymore. Final state.
Constant SHUTDOWN_FAILED Instance shutdown failed and cannot be used anymore. Final state.
Constant SHUTTING_DOWN Instance is currently (async) shutting down.
INITIALIZATION_FAILED =

Instance initialization failed and instance may need to be shut down.

Value
auto()
INITIALIZED =

Instance is initialized successfully and ready to be used.

Value
auto()
INITIALIZING =

Instance is currently (async) initializing.

Value
auto()
NEW =

Instance is created, but not (async) initialized.

Value
auto()
SHUTDOWN =

Instance is shut down successfully and cannot be used anymore. Final state.

Value
auto()
SHUTDOWN_FAILED =

Instance shutdown failed and cannot be used anymore. Final state.

Value
auto()
SHUTTING_DOWN =

Instance is currently (async) shutting down.

Value
auto()