TaskSignal: any() static method
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Want more browser support for this feature? Tell us why.
Note: This feature is available in Web Workers.
The TaskSignal.any() static method takes an iterable of AbortSignal objects and returns a TaskSignal. The returned task signal is aborted when any of the abort signals is aborted.
When the task signal is aborted, its reason property will be set to the reason of the first signal that is aborted.
Syntax
TaskSignal.any(signals)
TaskSignal.any(signals, init)
Parameters
signalsinitOptional-
Contains optional configuration parameters. Currently only one property is defined:
priorityOptional-
One of the following:
- A priority string which is one of
user-blocking,user-visibleandbackground. - A
TaskSignal.
- A priority string which is one of
Return value
A TaskSignal instance. It will be aborted when the first signal passed into signals is aborted. When this happens:
-
Its
reasonproperty will be set to the reason of the signal that caused this signal to abort. -
Its
priorityproperty will be determined by thepriorityparameter:- If the
priorityparameter was a string, it will be the value of the string. - If the
priorityparameter was aTaskSignal, it will be the value of that signal'spriority.
- If the
Description
The abort-signal cleanup considerations described for AbortSignal.any() also apply to TaskSignal.any(). There is no method to unsubscribe the returned signal from its input signals, and aborting it does not abort the other input signals or cancel their timeouts.
If init.priority is a signal with a changeable priority, the returned signal is also kept alive while it has a priority source and either prioritychange listeners or internal priority change steps registered by an API. Remove listeners added by your code when they are no longer needed. Aborting the signal does not remove its prioritychange listeners or stop it from following priority changes.
Examples
>Using TaskSignal.any()
This example demonstrates combining both a signal from a TaskController, and a timeout signal from TaskSignal.timeout().
const cancelDownloadButton = document.getElementById("cancelDownloadButton");
const userCancelController = new TaskController({
priority: "user-visible",
});
cancelDownloadButton.addEventListener("click", () => {
userCancelController.abort();
});
// Timeout after 5 minutes
const timeoutSignal = TaskSignal.timeout(1_000 * 60 * 5);
// This signal will abort when either the user clicks the cancel button or 5 minutes is up whichever is sooner
const combinedSignal = TaskSignal.any([
userCancelController.signal,
timeoutSignal,
]);
try {
const res = await fetch(someUrlToDownload, {
// Stop the fetch when any of the
signal: combinedSignal,
});
const body = await res.blob();
// Do something with downloaded content
// …
} catch (e) {
if (e.name === "AbortError") {
// Canceled by the user
} else if (e.name === "TimeoutError") {
// Show user that download timed out
} else {
// Other error, e.g. network error
}
}
Specifications
| Specification |
|---|
| Prioritized Task Scheduling> # dom-tasksignal-any> |