2022-02-27 11:07:39 +09:00
|
|
|
import Channel from '../channel.js';
|
2018-10-07 11:06:17 +09:00
|
|
|
|
|
|
|
export default class extends Channel {
|
2018-10-11 23:01:57 +09:00
|
|
|
public readonly chName = 'messagingIndex';
|
2018-10-11 23:07:20 +09:00
|
|
|
public static shouldShare = true;
|
2018-11-11 02:22:34 +09:00
|
|
|
public static requireCredential = true;
|
2018-10-11 23:01:57 +09:00
|
|
|
|
2018-10-07 11:06:17 +09:00
|
|
|
public async init(params: any) {
|
|
|
|
// Subscribe messaging index stream
|
2019-04-13 01:43:22 +09:00
|
|
|
this.subscriber.on(`messagingIndexStream:${this.user!.id}`, data => {
|
2018-10-07 11:06:17 +09:00
|
|
|
this.send(data);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|