jormungandr-bite/src/web/app/common/scripts/messaging-stream.js

24 lines
321 B
JavaScript
Raw Normal View History

2017-06-08 10:03:54 -06:00
'use strict';
2017-02-18 00:51:11 -07:00
2017-06-08 10:03:54 -06:00
import Stream from './stream';
2017-02-18 00:51:11 -07:00
2017-06-08 10:03:54 -06:00
/**
* Messaging stream connection
*/
class Connection extends Stream {
constructor(me, otherparty) {
super('messaging', {
i: me.token,
otherparty
});
2017-02-18 00:51:11 -07:00
2017-06-08 10:03:54 -06:00
this.on('_connected_', () => {
this.send({
i: me.token
});
});
2017-02-18 00:51:11 -07:00
}
}
2017-03-18 05:05:11 -06:00
export default Connection;