open method

/////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////// Authenticate the client and return this.

Implementation

// Operations
//////////////////////////////////////////////////////////////////////////

  /// Authenticate the client and return this.
  Future<HSkySparkClient> open() async {
    _auth.connectTimeout = this.connectTimeout;
    _auth.readTimeout = this.readTimeout;
    await _auth.open();
    return Future(() => this);
  }