import * as mod from "https://dotland.deno.dev/std@0.181.0/async/mod.ts";
Provide help with asynchronous tasks like delays, debouncing, deferring, or pooling.
Classes
The MuxAsyncIterator class multiplexes multiple async iterators into a single stream. It currently makes an assumption that the final result (the value returned and not yielded from the iterator) does not matter; if there is any result, it is discarded. | |
Functions
Make Promise abortable with the given signal. | |
Make AsyncIterable abortable with the given signal. | |
Make Promise abortable with the given signal. | |
Create a promise which will be rejected with | |
Creates a debounced function that delays the given | |
Creates a Promise with the | |
Resolve a Promise after a given amount of milliseconds. | |
pooledMap transforms values from an (async) iterable into another async iterable. The transforms are done concurrently, with a max concurrency defined by the poolLimit. | |
Creates a retry promise which resolves to the value of the input using exponential backoff.
If the input promise throws, it will be retried | |
f tee | Branches the given async iterable into the n branches. |
Interfaces
A debounced function that will be delayed by a given | |