2018-04-17 07:52:28 +02:00
|
|
|
import Stream from './stream';
|
|
|
|
import StreamManager from './stream-manager';
|
2018-04-29 14:37:51 +02:00
|
|
|
import MiOS from '../../../mios';
|
2018-04-17 07:52:28 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Local timeline stream connection
|
|
|
|
*/
|
|
|
|
export class LocalTimelineStream extends Stream {
|
|
|
|
constructor(os: MiOS, me) {
|
|
|
|
super(os, 'local-timeline', {
|
|
|
|
i: me.token
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export class LocalTimelineStreamManager extends StreamManager<LocalTimelineStream> {
|
|
|
|
private me;
|
|
|
|
private os: MiOS;
|
|
|
|
|
|
|
|
constructor(os: MiOS, me) {
|
|
|
|
super();
|
|
|
|
|
|
|
|
this.me = me;
|
|
|
|
this.os = os;
|
|
|
|
}
|
|
|
|
|
|
|
|
public getConnection() {
|
|
|
|
if (this.connection == null) {
|
|
|
|
this.connection = new LocalTimelineStream(this.os, this.me);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.connection;
|
|
|
|
}
|
|
|
|
}
|