holoscan::OperatorStatus

Beta
View as Markdown

Enum representing the status of an operator.

enum class holoscan::OperatorStatus

This enum defines the possible statuses of an operator in the Holoscan SDK. It maps the GXF entity status values to human-readable operator statuses.


Values

NameValueDescription
kNotStarted= 0Operator is created but not started (GXF_ENTITY_STATUS_NOT_STARTED).
kStartPendingOperator is pending to start (GXF_ENTITY_STATUS_START_PENDING).
kStartedOperator is started (GXF_ENTITY_STATUS_STARTED).
kTickPendingOperator is pending to tick (compute) (GXF_ENTITY_STATUS_TICK_PENDING).
kTickingOperator is currently ticking (in compute) (GXF_ENTITY_STATUS_TICKING).
kIdleOperator is idle (GXF_ENTITY_STATUS_IDLE).
kStopPendingOperator is pending to stop (GXF_ENTITY_STATUS_STOP_PENDING).