blob: 598d23c8ea35a7499e7fba3688250c40672da522 [file] [log] [blame]
/// <reference path="../../../../typings/index.d.ts"/>
import {Subject} from 'rxjs/Rx';
import {IWSEvent, IWSEventService} from '../websocket/global';
export class SynchronizerStore {
static $inject = ['WebSocket'];
private _notifications: Subject<IWSEvent> = new Subject();
constructor(
private webSocket: IWSEventService
) {
this.webSocket.list()
.filter((e: IWSEvent) => {
return e.msg.changed_fields.indexOf('backend_status') > -1;
})
.subscribe(
(event: IWSEvent) => {
this._notifications.next(event);
}
);
}
query() {
return this._notifications.asObservable();
}
}