connect method

Future connect()

Open the connection and send a hello packet to server

Implementation

Future connect() async {
  _doSubscriptions();
  await _connectionService.connect();
  return hello();
}