(timeout, tries, maxTimeout)
| 88 | } |
| 89 | |
| 90 | [kInitializeHandle](timeout, tries, maxTimeout) { |
| 91 | const { ChannelWrap } = lazyBinding(); |
| 92 | this._handle = new ChannelWrap(timeout, tries, maxTimeout); |
| 93 | } |
| 94 | |
| 95 | cancel() { |
| 96 | this._handle.cancel(); |
nothing calls this directly
no test coverage detected