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