blob: a170daebb9e89bc78e69830089e397b96483c370 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import StreamManager from './stream-manager';
import Connection from './server-stream';
export default class ServerStreamManager extends StreamManager<Connection> {
public getConnection() {
if (this.connection == null) {
this.connection = new Connection();
}
return this.connection;
}
}
|