Warning

Nightly releases are generated automatically from the latest source code and are intended for experimental purposes only. These builds may contain incomplete or untested features, bugs, or security vulnerabilities, and as such, are not for production use. Users should be aware that nightly releases may cause unexpected behavior, data loss, or system instability. Use of these releases is at the user's own risk, and it is advised to have adequate backups before testing. The software is provided as is with no guarantees or support.

ServiceStateΒΆ

Enumeration ServiceState

The ServiceState describes the current state of a Service. The ServiceState is grouped by the ServiceStateCategory which can be discovered by dividing the State by 1000.

const category = Math.floor(serviceState / 1000);

Enumeration Members

CREATED: 1000

Indicates that the Service was created.

ERROR: 5000

Indicates a general Error that doesn't match any of the specific ones.

ERROR_ABNORMAL_WS_CLOSE: 5002

Indicates that a WS connection closed abnormally.

ERROR_NO_LICENSE: 5004

Indicates that there was a problem to acquire a license for the Service.

ERROR_REQUEST: 5003

Indicates that there was a problem to request the Service from the backend.

ERROR_SHUTDOWN_TIMEOUT_REACHED: 5001

Indicates that the Service was not responding for a longer time and the automatic shutdown timeout was reached.

READY: 3000

Indicates that the Service is ready to use.

REQUESTED: 2000

Indicates that the Service is requested.

SHUTDOWN: 6000

Indicates that the Service is shutting down

WARNING: 4000

Indicates a general Warning that doesn't match any of the specific ones.

WARNING_HTTP_AND_WS_NOT_RESPONDING: 4003

Indicates that the HTTP and WS connection to the Service is not responding.

WARNING_HTTP_NOT_RESPONDING: 4001

Indicates that the HTTP connection to the Service is not responding.

WARNING_WS_NOT_RESPONDING: 4002

Indicates that the WS connection to the Service is not responding.