После обновления @ aspnet / signalr с 1.0.0 до 1.1.2
, Я получаю следующую ошибку при вызове startConnection () :
Ошибка анализа ответа на рукопожатие: Ошибка типа: Невозможно вызвать правую часть instanceof
это мой сервис:
@Injectable()
export class SignalRService {
careworkerTrckInfo = new EventEmitter<GeoLocationCareWorkerTrackSignalR>();
connectionEstablished = new EventEmitter<Boolean>();
private connectionIsEstablished = false;
private serverTimeoutInMilliseconds = 50000; // 50 Second
private _hubConnection: HubConnection;
constructor(
@Inject(APP_CONFIG) private appConfig: IAppConfig) {
this.createConnection();
this.startConnection();
}
private createConnection() {
const url = `${this.appConfig.apiEndpoint}/notifications`;
this._hubConnection = new HubConnectionBuilder()
.withUrl(url)
.build();
this._hubConnection.serverTimeoutInMilliseconds = this.serverTimeoutInMilliseconds;
}
private startConnection() {
this._hubConnection
.start()
.then(() => {
this.connectionIsEstablished = true;
this.connectionEstablished.emit(true);
})
.catch(err => {
console.log('Error while establishing connection.');
});
}}
раньше работал!