Result Code

class ska_control_model.ResultCode(value)

Python enumerated type for command result codes.

ABORTED = 7

The command in progress has been aborted.

FAILED = 3

The command could not be executed.

NOT_ALLOWED = 6

The command is not allowed to be executed.

OK = 0

The command was executed successfully.

QUEUED = 2

The command has been accepted and will be executed at a future time.

REJECTED = 5

The command execution has been rejected.

STARTED = 1

The command has been accepted and will start immediately.

UNKNOWN = 4

The status of the command is not known.

__new__(value)