2021-04-06 17:38:12 +00:00
|
|
|
export class TimeoutError extends Error {
|
2019-03-12 08:17:11 +00:00
|
|
|
readonly name: 'TimeoutError';
|
|
|
|
constructor(message?: string);
|
|
|
|
}
|
2019-04-04 04:58:41 +00:00
|
|
|
|
2022-07-25 16:16:27 +00:00
|
|
|
export interface ClearablePromise<T> extends Promise<T> {
|
2020-12-26 10:42:06 +00:00
|
|
|
/**
|
|
|
|
Clear the timeout.
|
|
|
|
*/
|
|
|
|
clear: () => void;
|
|
|
|
}
|
|
|
|
|
2022-07-25 16:16:27 +00:00
|
|
|
export type Options<ReturnType> = {
|
|
|
|
/**
|
|
|
|
Milliseconds before timing out.
|
|
|
|
|
|
|
|
Passing `Infinity` will cause it to never time out.
|
|
|
|
*/
|
|
|
|
milliseconds: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
Do something other than rejecting with an error on timeout.
|
|
|
|
|
|
|
|
You could for example retry:
|
|
|
|
|
|
|
|
@example
|
|
|
|
```
|
2022-07-25 16:24:32 +00:00
|
|
|
import {setTimeout} from 'node:timers/promises';
|
2022-07-25 16:16:27 +00:00
|
|
|
import pTimeout from 'p-timeout';
|
|
|
|
|
|
|
|
const delayedPromise = () => setTimeout(200);
|
|
|
|
|
|
|
|
await pTimeout(delayedPromise(), {
|
|
|
|
milliseconds: 50,
|
|
|
|
fallback: () => {
|
|
|
|
return pTimeout(delayedPromise(), {
|
|
|
|
milliseconds: 300
|
|
|
|
});
|
|
|
|
},
|
|
|
|
});
|
|
|
|
```
|
|
|
|
*/
|
|
|
|
fallback?: () => ReturnType | Promise<ReturnType>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
Specify a custom error message or error.
|
|
|
|
|
|
|
|
If you do a custom error, it's recommended to sub-class `pTimeout.TimeoutError`.
|
|
|
|
*/
|
|
|
|
message?: string | Error;
|
|
|
|
|
2019-04-04 04:58:41 +00:00
|
|
|
/**
|
2021-04-06 17:38:12 +00:00
|
|
|
Custom implementations for the `setTimeout` and `clearTimeout` functions.
|
2019-04-04 04:58:41 +00:00
|
|
|
|
2021-04-06 17:38:12 +00:00
|
|
|
Useful for testing purposes, in particular to work around [`sinon.useFakeTimers()`](https://sinonjs.org/releases/latest/fake-timers/).
|
2019-04-04 04:58:41 +00:00
|
|
|
|
|
|
|
@example
|
|
|
|
```
|
2021-04-06 17:38:12 +00:00
|
|
|
import pTimeout from 'p-timeout';
|
|
|
|
import sinon from 'sinon';
|
2019-04-04 04:58:41 +00:00
|
|
|
|
2021-04-06 17:38:12 +00:00
|
|
|
const originalSetTimeout = setTimeout;
|
|
|
|
const originalClearTimeout = clearTimeout;
|
2019-04-04 04:58:41 +00:00
|
|
|
|
2021-04-06 17:38:12 +00:00
|
|
|
sinon.useFakeTimers();
|
2019-04-04 04:58:41 +00:00
|
|
|
|
2021-04-06 17:38:12 +00:00
|
|
|
// Use `pTimeout` without being affected by `sinon.useFakeTimers()`:
|
2022-07-25 16:16:27 +00:00
|
|
|
await pTimeout(doSomething(), {
|
|
|
|
milliseconds: 2000,
|
2021-04-06 17:38:12 +00:00
|
|
|
customTimers: {
|
|
|
|
setTimeout: originalSetTimeout,
|
|
|
|
clearTimeout: originalClearTimeout
|
|
|
|
}
|
2019-04-04 04:58:41 +00:00
|
|
|
});
|
|
|
|
```
|
|
|
|
*/
|
2021-04-06 17:38:12 +00:00
|
|
|
readonly customTimers?: {
|
2022-07-25 16:16:27 +00:00
|
|
|
setTimeout: typeof globalThis.setTimeout;
|
|
|
|
clearTimeout: typeof globalThis.clearTimeout;
|
2021-04-06 17:38:12 +00:00
|
|
|
};
|
2022-05-26 16:57:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
You can abort the promise using [`AbortController`](https://developer.mozilla.org/en-US/docs/Web/API/AbortController).
|
|
|
|
|
|
|
|
_Requires Node.js 16 or later._
|
|
|
|
|
|
|
|
@example
|
|
|
|
```
|
|
|
|
import pTimeout from 'p-timeout';
|
|
|
|
import delay from 'delay';
|
|
|
|
|
|
|
|
const delayedPromise = delay(3000);
|
|
|
|
|
|
|
|
const abortController = new AbortController();
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
abortController.abort();
|
|
|
|
}, 100);
|
|
|
|
|
2022-07-25 16:16:27 +00:00
|
|
|
await pTimeout(delayedPromise, {
|
|
|
|
milliseconds: 2000,
|
2022-05-26 16:57:52 +00:00
|
|
|
signal: abortController.signal
|
|
|
|
});
|
|
|
|
```
|
|
|
|
*/
|
|
|
|
signal?: globalThis.AbortSignal;
|
2019-04-04 04:58:41 +00:00
|
|
|
};
|
|
|
|
|
2021-04-06 17:38:12 +00:00
|
|
|
/**
|
|
|
|
Timeout a promise after a specified amount of time.
|
|
|
|
|
|
|
|
If you pass in a cancelable promise, specifically a promise with a `.cancel()` method, that method will be called when the `pTimeout` promise times out.
|
|
|
|
|
|
|
|
@param input - Promise to decorate.
|
|
|
|
@returns A decorated `input` that times out after `milliseconds` time. It has a `.clear()` method that clears the timeout.
|
|
|
|
|
|
|
|
@example
|
|
|
|
```
|
2022-07-25 16:24:32 +00:00
|
|
|
import {setTimeout} from 'node:timers/promises';
|
2021-04-06 17:38:12 +00:00
|
|
|
import pTimeout from 'p-timeout';
|
|
|
|
|
|
|
|
const delayedPromise = () => setTimeout(200);
|
|
|
|
|
2022-07-25 16:16:27 +00:00
|
|
|
await pTimeout(delayedPromise(), {
|
|
|
|
milliseconds: 50,
|
|
|
|
fallback: () => {
|
|
|
|
return pTimeout(delayedPromise(), 300);
|
|
|
|
}
|
2021-04-06 17:38:12 +00:00
|
|
|
});
|
|
|
|
```
|
|
|
|
*/
|
2022-07-25 16:16:27 +00:00
|
|
|
export default function pTimeout<ValueType, ReturnType = ValueType>(
|
2021-04-06 17:38:12 +00:00
|
|
|
input: PromiseLike<ValueType>,
|
2022-07-25 16:16:27 +00:00
|
|
|
options: Options<ReturnType>
|
2021-04-06 17:38:12 +00:00
|
|
|
): ClearablePromise<ValueType | ReturnType>;
|