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.

NodeStateΒΆ

Enumeration NodeState

The NodeState describes the current state of a Node and its referenced data. The NodeState is grouped by the NodeStateCategory which can be determined by dividing the state by 1000.

 const category : NodeStateCategory = Math.floor(nodeState / 1000);

Enumeration Members

CREATED: 1000

Indicates that the node is created.

ERROR: 5000

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

ERROR_AUTHORIZATION: 5001

Indicates a problem with the data authorization.

ERROR_CONNECTION: 5003

Indicates a problem with the network connection.

ERROR_LICENSE: 5004

Indicates a problem with the license checkout.

ERROR_PROCESSING: 5002

Indicates a problem with the data processing.

ERROR_VALIDATION: 5005

Indicates a problem with the input URI validation.

PROCESSING: 2001

Indicates that the processing is in progress.

READY: 3000

Indicates that the referenced data is ready to use.

REQUESTED: 2000

Indicates that the processing is requested.

WARNING: 4000

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

WARNING_SUBTREE: 4001

Indicates that one or more nodes in the subtree have an error.