(options?: CancelOptions)
| 250 | } |
| 251 | |
| 252 | cancel(options?: CancelOptions): Promise<void> { |
| 253 | const promise = this.#retryer?.promise |
| 254 | this.#retryer?.cancel(options) |
| 255 | return promise ? promise.then(noop).catch(noop) : Promise.resolve() |
| 256 | } |
| 257 | |
| 258 | destroy(): void { |
| 259 | super.destroy() |
no outgoing calls
no test coverage detected