wip
This commit is contained in:
19
src/web/app/common/scripts/streaming/messaging.ts
Normal file
19
src/web/app/common/scripts/streaming/messaging.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
import Stream from './stream';
|
||||
|
||||
/**
|
||||
* Messaging stream connection
|
||||
*/
|
||||
export class MessagingStream extends Stream {
|
||||
constructor(me, otherparty) {
|
||||
super('messaging', {
|
||||
i: me.token,
|
||||
otherparty
|
||||
});
|
||||
|
||||
(this as any).on('_connected_', () => {
|
||||
this.send({
|
||||
i: me.token
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user