(id: ImportId, remoteRefcount: number)
| 855 | } |
| 856 | |
| 857 | sendRelease(id: ImportId, remoteRefcount: number) { |
| 858 | if (this.abortReason) return; |
| 859 | |
| 860 | this.send(["release", id, remoteRefcount]); |
| 861 | delete this.imports[id]; |
| 862 | } |
| 863 | |
| 864 | abort(error: any, trySendAbortMessage: boolean = true) { |
| 865 | // Don't double-abort. |