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 discovered by dividing the State by 1000.

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

Enumeration Members

CREATED: 1000

Indicates

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.

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 Node's in the subtree have an Error.