Sharkey/src/web/app/common/scripts/streaming/messaging-stream.ts
2017-11-17 01:24:44 +09:00

20 lines
302 B
TypeScript

import Stream from './stream';
/**
* Messaging stream connection
*/
export default class Connection extends Stream {
constructor(me, otherparty) {
super('messaging', {
i: me.token,
otherparty
});
(this as any).on('_connected_', () => {
this.send({
i: me.token
});
});
}
}