Skip to main content

CloudWebSocketClient

CloudWebSocketClient is a class that handles the WebSocket communication with the cloud node. It is used to send and receive messages from the cloud node

Import

import { CloudWebSocketClient } from '@silencelaboratories/silent-shard-sdk';

Usage

 const couldClient = new CloudWebSocketClient(
'CLOUD_NODE_URL',
false, // boolean indicates if the connection is `WSS` or `WS`
);

Constructors

constructor

new CloudWebSocketClient(url, isSecure, wsClient?): CloudWebSocketClient

Constructor

Parameters

NameTypeDescription
urlstringThe URI of the cloud node.
isSecurebooleanIf the connection is secure or not // WSS true / WS false.
wsClient?IWebSocketClientThe WebSocket client to use. Default is WebSocketClient. If you want to use a custom WebSocket client, you can implement the IWebSocketClient interface. Then you can pass here.

Returns

CloudWebSocketClient