有没有办法知道rxjs websocket是否打开

mil*_*erf 7 websocket rxjs rxjs5 angular

我在 Angular 4 项目中使用 RxJS。

我正在尝试启动一个 Websocket,特别是想知道这个 Websocket 何时打开。

我目前正在使用 RxJS (v5) 的 WebSocket。 https://github.com/ReactiveX/rxjs/blob/master/src/observable/dom/WebSocketSubject.ts

我注意到 WebSocketSubjectConfig 中有一个 openObserver,但我找不到如何创建 Observer。我已经锁定它几个小时了。

这是迄今为止我的代码的摘录:

import { Injectable } from '@angular/core';
import { webSocket} from 'rxjs/observable/dom/webSocket';
import { WebSocketSubject, WebSocketSubjectConfig} from 'rxjs/observable/dom/WebSocketSubject';

@Injectable()
export class MzkWebsocketJsonRpcService {
    subject: WebSocketSubject<any>;
    jsonRpcId: number;

    constructor() {

        this.subject = webSocket('ws://localhost:12345');
        this.subject.openObserver =
            /// Find a way to create the openObserver


        this.subject.subscribe(
            this.onMessage,
            this.onError,
            this.onClose,
        );
        console.log('Socket connected');
        this.jsonRpcId = 1;
    }

    public send(method: string, params: any[]) {

        let jsonFrame: any = {id: this.jsonRpcId, 'json-rpc': '2.0', method: method};

        if (params) {
            jsonFrame['params'] = params;
        }
        this.subject.next(JSON.stringify(jsonFrame));
        this.jsonRpcId ++;
    }

    onMessage(data: string) {
        console.log('Websocket message: ', data);
    }

    onError(data: string) {
        console.log('Websocket error:', data);
    }

    onClose() {
        console.log('Websocket closing');
    }
}
Run Code Online (Sandbox Code Playgroud)

mar*_*tin 6

观察者可以是至少部分实现该Observer接口的任何对象。请参阅https://github.com/ReactiveX/rxjs/blob/master/src/Observer.ts

这意味着您可以编写一个自定义类:

MyObserver implements Observer {
  next(value: any): void {
    ...
  }
  complete(): void {
    ...
  }
}

let socket = new WebSocketSubject({
  url: 'ws://localhost:8081',
  openObserver: new MyObserver()
});
Run Code Online (Sandbox Code Playgroud)

最终,如果WebSocketSubject您可以使其变得更简单,并仅使用next方法创建一个对象,因为期望和具有接口https://github.com/ReactiveX/rxjs/blob/master/src/Observer.ts#L1openObserver的对象。NextObserver

let socket = new WebSocketSubject({
  url: 'ws://localhost:8081',
  openObserver: {
    next: (val: any) => {
      console.log('opened');
    }
  }
});
Run Code Online (Sandbox Code Playgroud)