A tool for wrangling async operations that need to complete before the truffle process exits
$ npm install @truffle/promise-tracker
@truffle/promise-tracker
This library is used for keeping track of asynchronous work that needs to complete prior to the process exiting.
IMPORTANT Only use this library as a last resort. Typically you're better off architecting things so that you don't need process-level tracking of outstanding tasks.
Some alternatives to consider before using this module:
.then
and .catch
callbacks).Promise.race
For the moment promise tracking is implemented as a method decorator, meaning it must be applied to method declaration on a class.
It can be applied to any method, and it will only add special handling when methods return promises
import { tracked } from "@truffle/promise-tracker";
class Foo {
// totally fine, even though it doesn't return a promise
@tracked
synchronousBar(): "-" {
return "-";
}
@tracked
async asyncBar(): Promise<"-"> {
return "-";
}
// this works the same as with `asyncBar`, even though it's not explicitly an
// async method
@tracked
promiseBar(): Promise<"-"> {
return new Promise<"-">(resolve => resolve("-"));
}
}
import { waitForOutstandingPromises } from "@truffle/promiseTracker";
let exitCode = 0;
// If no catchHandler is passed, rejected promises are handled silently.
// This is because these promise rejections should already be handled by the
// caller that created the promise.
await waitForOutstandingPromises({ catchHandler: () => (exitCode = 1) });
process.exit(exitCode);
import { waitForOutstandingPromises } from "@truffle/promiseTracker";
let exitCode = 0;
// If no catchHandler is passed, rejected promises are handled silently.
// This is because these promise rejections should already be handled by the
// caller that created the promise.
waitForOutstandingPromises({ catchHandler: () => (exitCode = 1) }).then(() => {
process.exit(exitCode);
});
© 2010 - cnpmjs.org x YWFE | Home | YWFE