CloudClient
CloudClient
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
main.dart
import 'package:silent_shard_sdk/silent_shard_sdk.dart' as sdk;
Usage
main.dart
final cloudClient = duo.CloudClient(
baseUri: nodeUri,
isSecure: false,
);
Constructors
constructor
• new CloudClient(baseUri
, isSecure
): CloudClient
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. |
webSocketClient | WebSocketClientInterface | The WebSocket client to use. Default is WebSocketClient. If you want to use a custom WebSocket client, you can implement the WebSocketClientInterface class. Then you can pass here. |