wishthis/node_modules/rxjs/dist/esm5/internal/scheduler/AsapAction.js

34 lines
1.4 KiB
JavaScript
Raw Normal View History

2022-04-07 07:06:43 +00:00
import { __extends } from "tslib";
2022-01-21 08:28:41 +00:00
import { AsyncAction } from './AsyncAction';
2022-04-07 07:06:43 +00:00
import { immediateProvider } from './immediateProvider';
var AsapAction = (function (_super) {
__extends(AsapAction, _super);
2022-01-21 08:28:41 +00:00
function AsapAction(scheduler, work) {
var _this = _super.call(this, scheduler, work) || this;
_this.scheduler = scheduler;
_this.work = work;
return _this;
}
AsapAction.prototype.requestAsyncId = function (scheduler, id, delay) {
2022-04-07 07:06:43 +00:00
if (delay === void 0) { delay = 0; }
2022-01-21 08:28:41 +00:00
if (delay !== null && delay > 0) {
return _super.prototype.requestAsyncId.call(this, scheduler, id, delay);
}
scheduler.actions.push(this);
2022-04-07 07:06:43 +00:00
return scheduler._scheduled || (scheduler._scheduled = immediateProvider.setImmediate(scheduler.flush.bind(scheduler, undefined)));
2022-01-21 08:28:41 +00:00
};
AsapAction.prototype.recycleAsyncId = function (scheduler, id, delay) {
2022-04-07 07:06:43 +00:00
if (delay === void 0) { delay = 0; }
if ((delay != null && delay > 0) || (delay == null && this.delay > 0)) {
2022-01-21 08:28:41 +00:00
return _super.prototype.recycleAsyncId.call(this, scheduler, id, delay);
}
2022-04-07 07:06:43 +00:00
if (!scheduler.actions.some(function (action) { return action.id === id; })) {
immediateProvider.clearImmediate(id);
scheduler._scheduled = undefined;
2022-01-21 08:28:41 +00:00
}
return undefined;
};
return AsapAction;
}(AsyncAction));
export { AsapAction };
2022-04-07 07:06:43 +00:00
//# sourceMappingURL=AsapAction.js.map