(store)
| 50 | messageQueue: Action[]; |
| 51 | |
| 52 | constructor(store) { |
| 53 | this.activeFetches = {}; |
| 54 | this.store = store; |
| 55 | this.filterState = initialFilterState; |
| 56 | this.messageQueue = []; |
| 57 | this.connect(); |
| 58 | this.store.subscribe(this.onStoreUpdate.bind(this)); |
| 59 | } |
| 60 | |
| 61 | connect() { |
| 62 | this.socket = new WebSocket( |