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
Name | Type | Description |
---|---|---|
url | string | The URI of the cloud node. |
isSecure | boolean | If the connection is secure or not // WSS true / WS false. |
wsClient? | IWebSocketClient | The 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. |