()
| 196 | } |
| 197 | |
| 198 | public close() { |
| 199 | this.closeOpenConnections(); |
| 200 | |
| 201 | if (!this.httpServer) { |
| 202 | return undefined; |
| 203 | } |
| 204 | return new Promise(resolve => this.httpServer.close(resolve)); |
| 205 | } |
| 206 | |
| 207 | public set(...args: any[]) { |
| 208 | return this.instance.set(...args); |
nothing calls this directly
no test coverage detected