(clientId: string, performGC = false)
| 364 | } |
| 365 | |
| 366 | async dumpHeap(clientId: string, performGC = false): Promise<unknown> { |
| 367 | const resp = await this.forwardAndWait(clientId, DaemonMsgType.DUMP_HEAP_REQUEST, { performGC }, 60_000); |
| 368 | return resp['body']; |
| 369 | } |
| 370 | |
| 371 | close(): void { |
| 372 | this.socket.destroy(); |
nothing calls this directly
no test coverage detected