sharkey/src/web/app/common/scripts/messaging-index-stream-manager.ts
2017-11-14 00:54:16 +09:00

21 lines
381 B
TypeScript

import StreamManager from './stream-manager';
import Connection from './messaging-index-stream';
export default class ServerStreamManager 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;
}
}