juturna.names package#
Module contents#
- class juturna.names.ComponentStatus(*values)#
Bases:
StrEnum
Possible state values of a component.
NEW
(component_created
): a component was instantiatedCONFIGURED
(component_configured
): a component was configured, or, theconfigure()
method was invoked on itRUNNING
(component_running
): a component is running within a running pipeline, so,configure()
andstart()
were previosuly invoked on itSTOPPED
(component_stopped
): a previously running component was stopped, sostop()
was invoked on it
- CONFIGURED = 'component_configured'#
- NEW = 'component_created'#
- RUNNING = 'component_running'#
- STOPPED = 'component_stopped'#
- class juturna.names.PipelineStatus(*values)#
Bases:
StrEnum
- NEW = 'pipeline_created'#
- READY = 'pipeline_ready'#
- RUNNING = 'pipeline_running'#
- class juturna.names.ServiceStatus(*values)#
Bases:
StrEnum
- ALREADY_RUNNING = 'session_already_running'#
- ALREADY_WARMEDUP = 'session_already_warmedup'#
- INVALID_ID = 'session_id_invalid'#
- NOT_READY = 'session_not_ready'#
- NOT_RUNNING = 'session_not_running'#
- REQUEST_KO = 'service_request_failed'#
- REQUEST_OK = 'service_request_ok'#