2018-10-07 02:06:17 +00:00
|
|
|
import autobind from 'autobind-decorator';
|
2021-08-19 12:55:45 +00:00
|
|
|
import Channel from '../channel';
|
2018-10-07 02:06:17 +00:00
|
|
|
|
|
|
|
export default class extends Channel {
|
2018-10-11 14:01:57 +00:00
|
|
|
public readonly chName = 'messagingIndex';
|
2018-10-11 14:07:20 +00:00
|
|
|
public static shouldShare = true;
|
2018-11-10 17:22:34 +00:00
|
|
|
public static requireCredential = true;
|
2018-10-11 14:01:57 +00:00
|
|
|
|
2018-10-07 02:06:17 +00:00
|
|
|
@autobind
|
|
|
|
public async init(params: any) {
|
|
|
|
// Subscribe messaging index stream
|
2019-04-12 16:43:22 +00:00
|
|
|
this.subscriber.on(`messagingIndexStream:${this.user!.id}`, data => {
|
2018-10-07 02:06:17 +00:00
|
|
|
this.send(data);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|