(...args)
| 468 | } |
| 469 | |
| 470 | postMessage(...args) { |
| 471 | if (this[kPublicPort] === null) return; |
| 472 | |
| 473 | ReflectApply(this[kPublicPort].postMessage, this[kPublicPort], args); |
| 474 | } |
| 475 | |
| 476 | terminate() { |
| 477 | debug(`[${threadId}] terminates Worker with ID ${this.threadId}`); |
no outgoing calls