Package Exports
- race-cancellation
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (race-cancellation) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
race-cancellation
This 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 on demand.
Constraints
- Composable
- Cancellation concerns can be composed easily
- Lazy
- Should not create the Promise
until it is raced or it will create meaningless unhandledRejections - Should be able to avoid invoking the raced task if it is already cancelled
- Should be able to avoid invoking the cancellation task if the parent cancellation already won
- Should not create the Promise
RaceCancellation Interface
export type Race = <T>(task: Promise<T> | Task<T>) => Promise<T>;
export type Task<T> = () => Promise<T>;
export type CancellableTask<T> = (raceCancel: Race) => Promise<T>;
Since race cancellation is a function it can lazily create the Promise
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
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.
Examples of Cancellable Async Functions
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<void>(resolve => {
id = setTimeout(() => {
resolve();
id = undefined;
}, 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<never> created from the cancellation 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);
}
}
}