mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 04:43:08 +02:00
20 lines
368 B
TypeScript
20 lines
368 B
TypeScript
import StreamManager from './stream-manager';
|
|
import Connection from './home-stream';
|
|
|
|
export default class HomeStreamManager extends StreamManager<Connection> {
|
|
private me;
|
|
|
|
constructor(me) {
|
|
super();
|
|
|
|
this.me = me;
|
|
}
|
|
|
|
public getConnection() {
|
|
if (this.connection == null) {
|
|
this.connection = new Connection(this.me);
|
|
}
|
|
|
|
return this.connection;
|
|
}
|
|
}
|