wishthis/node_modules/rxjs/dist/cjs/internal/scheduler/AsapScheduler.js

48 lines
1.9 KiB
JavaScript
Raw Normal View History

2022-01-21 08:28:41 +00:00
"use strict";
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
2022-06-08 10:36:39 +00:00
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
2022-01-21 08:28:41 +00:00
return extendStatics(d, b);
2022-06-08 10:36:39 +00:00
};
2022-01-21 08:28:41 +00:00
return function (d, b) {
2022-06-08 10:36:39 +00:00
if (typeof b !== "function" && b !== null)
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
2022-01-21 08:28:41 +00:00
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
2022-06-08 10:36:39 +00:00
exports.AsapScheduler = void 0;
2022-01-21 08:28:41 +00:00
var AsyncScheduler_1 = require("./AsyncScheduler");
var AsapScheduler = (function (_super) {
__extends(AsapScheduler, _super);
function AsapScheduler() {
return _super !== null && _super.apply(this, arguments) || this;
}
AsapScheduler.prototype.flush = function (action) {
2022-06-08 10:36:39 +00:00
this._active = true;
var flushId = this._scheduled;
this._scheduled = undefined;
2022-01-21 08:28:41 +00:00
var actions = this.actions;
var error;
action = action || actions.shift();
do {
2022-06-08 10:36:39 +00:00
if ((error = action.execute(action.state, action.delay))) {
2022-01-21 08:28:41 +00:00
break;
}
2022-06-08 10:36:39 +00:00
} while ((action = actions[0]) && action.id === flushId && actions.shift());
this._active = false;
2022-01-21 08:28:41 +00:00
if (error) {
2022-06-08 10:36:39 +00:00
while ((action = actions[0]) && action.id === flushId && actions.shift()) {
2022-01-21 08:28:41 +00:00
action.unsubscribe();
}
throw error;
}
};
return AsapScheduler;
}(AsyncScheduler_1.AsyncScheduler));
exports.AsapScheduler = AsapScheduler;
//# sourceMappingURL=AsapScheduler.js.map