Class BiDi

BiDi class for handling WebSocket connections

Constructors

Properties

_id: number = 0
_isConnected: boolean = false
_ws: WebSocket

Accessors

  • get getConnection(): WebSocket
  • Return WebSocket connection

    Returns WebSocket

    The WebSocket connection.

  • get isConnected(): boolean
  • Return if it is connected

    Returns boolean

    The connection status.

Methods

  • Close the WebSocket connection.

    Returns Promise<void>

    Resolves when the connection has been successfully closed.

  • Send a command over the WebSocket connection

    Type Parameters

    • T

    Parameters

    • params: T

      Parameters to send with the command.

    Returns Promise<unknown>

    Resolves with the response payload.

  • Wait for the connection to be established

    Returns Promise<void>

    Resolves when the connection is established.