summaryrefslogtreecommitdiff
path: root/src/client/app/common/scripts/streaming/hybrid-timeline.ts
blob: cd290797c4b381647e595e8557c52a8a0bfe3d84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import Stream from './stream';
import StreamManager from './stream-manager';
import MiOS from '../../../mios';

/**
 * Hybrid timeline stream connection
 */
export class HybridTimelineStream extends Stream {
	constructor(os: MiOS, me) {
		super(os, 'hybrid-timeline', {
			i: me.token
		});
	}
}

export class HybridTimelineStreamManager extends StreamManager<HybridTimelineStream> {
	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 HybridTimelineStream(this.os, this.me);
		}

		return this.connection;
	}
}