(asyncId)
| 104 | } |
| 105 | }, |
| 106 | after(asyncId) { |
| 107 | const current = pairing.get(asyncId); |
| 108 | if (current !== undefined) { // Exit domain for this cb |
| 109 | const domain = current.get(); |
| 110 | current.decRef(); |
| 111 | domain.exit(); |
| 112 | } |
| 113 | }, |
| 114 | destroy(asyncId) { |
| 115 | pairing.delete(asyncId); // cleaning up |
| 116 | }, |