Lines Matching refs:AbortSignal
63 * `reason` {any} An optional reason, retrievable on the `AbortSignal`'s
77 * Type: {AbortSignal}
79 ### Class: `AbortSignal`
89 The `AbortSignal` is used to notify observers when the
92 #### Static method: `AbortSignal.abort([reason])` argument
107 * Returns: {AbortSignal}
109 Returns a new already aborted `AbortSignal`.
111 #### Static method: `AbortSignal.timeout(delay)` argument
120 the AbortSignal.
122 Returns a new `AbortSignal` which will be aborted in `delay` milliseconds.
124 #### Static method: `AbortSignal.any(signals)` argument
130 * `signals` {AbortSignal\[]} The `AbortSignal`s of which to compose a new `AbortSignal`.
132 Returns a new `AbortSignal` which will be aborted if any of the provided
162 The `AbortController` with which the `AbortSignal` is associated will only
167 Any event listeners attached to the `AbortSignal` should use the
206 An optional reason specified when the `AbortSignal` was triggered.