Utilities for using Promise.race([task, cancellation]) for async/await code.
npm install race-cancellationThis is a library with utils to implement a cancellable async function
with a pattern that solves a number of issues with cancellation of promises.
The pattern is a cancellable async function takes a function that will build
the cancellation race lazily.
- Composable
- Cancellation concerns can be composed easily
- Lazy
- Should not create the Promise
- Should be able to avoid invoking the raced async function if it is already cancelled
- Should be able to avoid invoking the cancellation task if the outer scope cancellation already won
- Adaptable
- Should be easy to adapt other promise cancellation patterns
``ts`
export type AsyncFn
export type RaceCancelFn =
export type CancellableAsyncFn
Since race cancellation is a function it can lazily create the Promise
avoid unhandledRejection.
Since it can take a function to invoke to produce the task,
it can avoid starting the task if it is already cancelled and can avoid creating the Promise
if the task fails on invoke.
This also allows the combined race cancellations to be lazy.
For example, if we are already cancelled because we are disconnected
we don't need to start a timeout.
`js
import * as fs from "fs";
async function pollFile(path, interval, raceCancel) {
while (!fs.existsSync(path)) {
await sleep(interval, raceCancel);
}
}
async function sleep(ms, raceCancel) {
let id;
try {
const createTimeout = () =>
new Promise
id = setTimeout(resolve, ms);
});
// if cancellation has happened race cancel can return
// a rejected promise without invoking createTimeout
// otherwise createTimeout is called and raced against
// a new Promise
// cancellationPromise.then(throwCancellationError)
return await raceCancel(createTimeout);
} finally {
if (id !== undefined) {
// cleanup timeout so node will exit right away if
// our script is done.
clearTimeout(id);
}
}
}
``