cancelable-awaiter
TypeScript icon, indicating that this package has built-in type declarations

1.0.6 • Public • Published

Cancelable Awaiter

A replacement for Typescript's default awaiter helper that supports Bluebird promise cancellations.

Installation

npm install --save cancelable-awaiter

Usage

Depends on bluebird being installed as a dependency and configured to support cancellations:

import * as tslib from "tslib";
import * as Bluebird from "bluebird";
import * as awaiter from "cancelable-awaiter";
 
Bluebird.config({
    cancellation: true
});
 
(tslib as any).__awaiter = awaiter;

Note that in order for the above to work you also need to compile your project with the --importHelpers flag and install the tslib module.

Then async/await syntax can be used in conjunction with promise cancellations:

async function doSomeThings() {
    await doFirstThing()
        // will be invoked anyway:
        .finally(() => console.log("May have done first thing."));
 
    // may not execute this part if cancelled beforehand:
    console.log("Done first thing!");
 
    // may also be cancelled after first thing is done:
    await doSecondThing();
    console.log("Done second thing!");
}
 
const promise = doSomeThings()
    .finally(() => console.log("May have done some things."));
 
Promise.delay(1000)
    .then(() => promise.cancel());

Package Sidebar

Install

npm i cancelable-awaiter

Weekly Downloads

1,210

Version

1.0.6

License

MIT

Unpacked Size

3.41 kB

Total Files

4

Last publish

Collaborators

  • itaysabato