Skip to main content

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

NameTypeDescription
urlstringThe URI of the cloud node.
isSecurebooleanIf the connection is secure or not // WSS true / WS false.
webSocketClientWebSocketClientInterfaceThe 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.

Returns

CloudClient