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

54 lines
2 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-04-07 07:06:43 +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-04-07 07:06:43 +00:00
};
2022-01-21 08:28:41 +00:00
return function (d, b) {
2022-04-07 07:06:43 +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-04-07 07:06:43 +00:00
exports.AsyncScheduler = void 0;
2022-01-21 08:28:41 +00:00
var Scheduler_1 = require("../Scheduler");
var AsyncScheduler = (function (_super) {
__extends(AsyncScheduler, _super);
function AsyncScheduler(SchedulerAction, now) {
if (now === void 0) { now = Scheduler_1.Scheduler.now; }
2022-04-07 07:06:43 +00:00
var _this = _super.call(this, SchedulerAction, now) || this;
2022-01-21 08:28:41 +00:00
_this.actions = [];
2022-04-07 07:06:43 +00:00
_this._active = false;
_this._scheduled = undefined;
2022-01-21 08:28:41 +00:00
return _this;
}
AsyncScheduler.prototype.flush = function (action) {
var actions = this.actions;
2022-04-07 07:06:43 +00:00
if (this._active) {
2022-01-21 08:28:41 +00:00
actions.push(action);
return;
}
var error;
2022-04-07 07:06:43 +00:00
this._active = true;
2022-01-21 08:28:41 +00:00
do {
2022-04-07 07:06:43 +00:00
if ((error = action.execute(action.state, action.delay))) {
2022-01-21 08:28:41 +00:00
break;
}
2022-04-07 07:06:43 +00:00
} while ((action = actions.shift()));
this._active = false;
2022-01-21 08:28:41 +00:00
if (error) {
2022-04-07 07:06:43 +00:00
while ((action = actions.shift())) {
2022-01-21 08:28:41 +00:00
action.unsubscribe();
}
throw error;
}
};
return AsyncScheduler;
}(Scheduler_1.Scheduler));
exports.AsyncScheduler = AsyncScheduler;
//# sourceMappingURL=AsyncScheduler.js.map