sequelize-pool
Version:
Resource pooling for Node.JS
40 lines • 1.15 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Deferred = void 0;
const TimeoutError_1 = require("./TimeoutError");
class Deferred {
constructor(options = {}) {
this.options = options;
this._promise = new Promise((resolve, reject) => {
this._reject = reject;
this._resolve = resolve;
});
}
registerTimeout(timeoutInMillis, callback) {
if (this._timeout)
return;
this._timeout = setTimeout(() => {
var _a;
callback();
this.reject(new TimeoutError_1.TimeoutError((_a = this.options.errorMessage) !== null && _a !== void 0 ? _a : 'Operation timeout'));
}, timeoutInMillis);
}
_clearTimeout() {
if (!this._timeout)
return;
clearTimeout(this._timeout);
}
resolve(value) {
this._clearTimeout();
this._resolve(value);
}
reject(error) {
this._clearTimeout();
this._reject(error);
}
promise() {
return this._promise;
}
}
exports.Deferred = Deferred;
//# sourceMappingURL=Deferred.js.map