diff options
Diffstat (limited to 'src/web/app/common/scripts/streaming/messaging.ts')
| -rw-r--r-- | src/web/app/common/scripts/streaming/messaging.ts | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/web/app/common/scripts/streaming/messaging.ts b/src/web/app/common/scripts/streaming/messaging.ts new file mode 100644 index 0000000000..1fff2286b3 --- /dev/null +++ b/src/web/app/common/scripts/streaming/messaging.ts @@ -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 + }); + }); + } +} |