This feature is not Baseline because it does not work in some of the most widely-used browsers.
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.
TaskSignal.any(signals) TaskSignal.any(signals, init)
signalsinit OptionalContains optional configuration parameters. Currently only one property is defined:
priority OptionalOne of the following:
user-blocking, user-visible and background.TaskSignal.A TaskSignal instance. It will be aborted when the first signal passed into signals is aborted. When this happens:
Its reason property will be set to the reason of the signal that caused this signal to abort.
Its priority property will be determined by the priority parameter:
priority parameter was a string, it will be the value of the string.priority parameter was a TaskSignal, it will be the value of that signal's priority.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") {
// Cancelled by the user
} else if (e.name === "TimeoutError") {
// Show user that download timed out
} else {
// Other error, e.g. network error
}
}
| Specification |
|---|
| Prioritized Task Scheduling> # dom-tasksignal-any> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
any_static |
116 | 116 | 142 | 102 | No | 116 | 142 | 78 | No | 24.0 | 116 | No |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/TaskSignal/any_static