mirror of
https://github.com/element-hq/element-web
synced 2024-11-28 20:38:55 +03:00
EventIndex: Subclass the event emitter instead of putting one in a property.
This commit is contained in:
parent
6f919eaeec
commit
38b1663755
1 changed files with 3 additions and 11 deletions
|
@ -22,8 +22,9 @@ import {EventEmitter} from "events";
|
|||
/*
|
||||
* Event indexing class that wraps the platform specific event indexing.
|
||||
*/
|
||||
export default class EventIndex {
|
||||
export default class EventIndex extends EventEmitter {
|
||||
constructor() {
|
||||
super();
|
||||
this.crawlerCheckpoints = [];
|
||||
// The time in ms that the crawler will wait loop iterations if there
|
||||
// have not been any checkpoints to consume in the last iteration.
|
||||
|
@ -35,7 +36,6 @@ export default class EventIndex {
|
|||
this._crawler = null;
|
||||
this._currentCheckpoint = null;
|
||||
this.liveEventsForIndex = new Set();
|
||||
this._eventEmitter = new EventEmitter();
|
||||
}
|
||||
|
||||
async init() {
|
||||
|
@ -188,7 +188,7 @@ export default class EventIndex {
|
|||
}
|
||||
|
||||
emitNewCheckpoint() {
|
||||
this._eventEmitter.emit("changedCheckpoint", this.currentRoom());
|
||||
this.emit("changedCheckpoint", this.currentRoom());
|
||||
}
|
||||
|
||||
async crawlerFunc() {
|
||||
|
@ -459,12 +459,4 @@ export default class EventIndex {
|
|||
return client.getRoom(this.crawlerCheckpoints[0].roomId);
|
||||
}
|
||||
}
|
||||
|
||||
on(eventName, callback) {
|
||||
this._eventEmitter.on(eventName, callback);
|
||||
}
|
||||
|
||||
removeListener(eventName, callback) {
|
||||
this._eventEmitter.removeListener(eventName, callback);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue