mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
0b2497f16e
* fix: update codebase to work with Deno RC * work * fix * fix * fix * fixes * work * update * fixes * fix * revert
50 lines
1.7 KiB
TypeScript
50 lines
1.7 KiB
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
// This module is browser compatible.
|
|
|
|
import { abortable } from "./abortable.ts";
|
|
|
|
/** Options for {@linkcode deadline}. */
|
|
export interface DeadlineOptions {
|
|
/** Signal used to abort the deadline. */
|
|
signal?: AbortSignal;
|
|
}
|
|
|
|
/**
|
|
* Create a promise which will be rejected with {@linkcode DOMException} when
|
|
* a given delay is exceeded.
|
|
*
|
|
* Note: Prefer to use {@linkcode AbortSignal.timeout} instead for the APIs
|
|
* that accept {@linkcode AbortSignal}.
|
|
*
|
|
* @throws {DOMException & { name: "TimeoutError" }} If the provided duration
|
|
* runs out before resolving.
|
|
* @throws {DOMException & { name: "AbortError" }} If the optional signal is
|
|
* aborted with the default `reason` before resolving or timing out.
|
|
* @throws {AbortSignal["reason"]} If the optional signal is aborted with a
|
|
* custom `reason` before resolving or timing out.
|
|
* @typeParam T The type of the provided and returned promise.
|
|
* @param p The promise to make rejectable.
|
|
* @param ms Duration in milliseconds for when the promise should time out.
|
|
* @param options Additional options.
|
|
* @returns A promise that will reject if the provided duration runs out before resolving.
|
|
*
|
|
* @example Usage
|
|
* ```ts ignore
|
|
* import { deadline } from "@std/async/deadline";
|
|
* import { delay } from "@std/async/delay";
|
|
*
|
|
* const delayedPromise = delay(1_000);
|
|
* // Below throws `DOMException` after 10 ms
|
|
* const result = await deadline(delayedPromise, 10);
|
|
* ```
|
|
*/
|
|
export async function deadline<T>(
|
|
p: Promise<T>,
|
|
ms: number,
|
|
options: DeadlineOptions = {},
|
|
): Promise<T> {
|
|
const signals = [AbortSignal.timeout(ms)];
|
|
if (options.signal) signals.push(options.signal);
|
|
return await abortable(p, AbortSignal.any(signals));
|
|
}
|