connect method
Connect
Implementation
@override
Future<MqttClientConnectionStatus?> connect(String server, int port) {
final completer = Completer<MqttClientConnectionStatus?>();
MqttLogger.log('MqttWsConnection::connect - entered');
// Add the port if present
Uri uri;
try {
uri = Uri.parse(server);
} on Exception {
final message = 'MqttWsConnection::connect - The URI supplied for the WS '
'connection is not valid - $server';
throw NoConnectionException(message);
}
if (uri.scheme != 'ws' && uri.scheme != 'wss') {
final message =
'MqttWsConnection::connect - The URI supplied for the WS has '
'an incorrect scheme - $server';
throw NoConnectionException(message);
}
uri = uri.replace(port: port);
final uriString = uri.toString();
MqttLogger.log(
'MqttWsConnection::connect - WS URL is $uriString, protocols are $protocols');
try {
// Connect and save the socket.
WebSocket.connect(uriString,
protocols: protocols.isNotEmpty ? protocols : null)
.then((socket) {
client = socket;
readWrapper = ReadWrapper();
messageStream = MqttByteBuffer(typed.Uint8Buffer());
_startListening();
completer.complete();
}).catchError((e) {
onError(e);
completer.completeError(e);
});
} on Exception {
final message =
'MqttWsConnection::connect - The connection to the message broker '
'{$uriString} could not be made.';
throw NoConnectionException(message);
}
return completer.future;
}