closeWithError method
void
closeWithError(
- dynamic error
Implementation
void closeWithError(error) {
this._watchStatus = WatchStatus.ERRORED;
this._clearACKSchedule();
this.listener?.onError?.call(error);
String queryID =
this._sessionInfo?.queryID != null ? this._sessionInfo!.queryID! : '';
this._onWatchClose(this, queryID);
Console.log(
'[realtime] client closed (${this._collectionName} ${this._query}) (watchId ${this.watchId})');
}