NodeState

Represents the WebSocket connection state for a Node

enum NodeState {
  CONNECTING = 0,
  CONNECTED = 1,
  DISCONNECTED = 2
}

Last updated