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

87 lines
3 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 { Action } from './Action';
2022-04-07 07:06:43 +00:00
import { intervalProvider } from './intervalProvider';
import { arrRemove } from '../util/arrRemove';
var AsyncAction = (function (_super) {
__extends(AsyncAction, _super);
2022-01-21 08:28:41 +00:00
function AsyncAction(scheduler, work) {
var _this = _super.call(this, scheduler, work) || this;
_this.scheduler = scheduler;
_this.work = work;
_this.pending = false;
return _this;
}
AsyncAction.prototype.schedule = function (state, delay) {
2022-04-07 07:06:43 +00:00
if (delay === void 0) { delay = 0; }
2022-01-21 08:28:41 +00:00
if (this.closed) {
return this;
}
this.state = state;
var id = this.id;
var scheduler = this.scheduler;
if (id != null) {
this.id = this.recycleAsyncId(scheduler, id, delay);
}
this.pending = true;
this.delay = delay;
this.id = this.id || this.requestAsyncId(scheduler, this.id, delay);
return this;
};
2022-04-07 07:06:43 +00:00
AsyncAction.prototype.requestAsyncId = function (scheduler, _id, delay) {
if (delay === void 0) { delay = 0; }
return intervalProvider.setInterval(scheduler.flush.bind(scheduler, this), delay);
2022-01-21 08:28:41 +00:00
};
2022-04-07 07:06:43 +00:00
AsyncAction.prototype.recycleAsyncId = function (_scheduler, id, delay) {
if (delay === void 0) { delay = 0; }
if (delay != null && this.delay === delay && this.pending === false) {
2022-01-21 08:28:41 +00:00
return id;
}
2022-04-07 07:06:43 +00:00
intervalProvider.clearInterval(id);
2022-01-21 08:28:41 +00:00
return undefined;
};
AsyncAction.prototype.execute = function (state, delay) {
if (this.closed) {
return new Error('executing a cancelled action');
}
this.pending = false;
var error = this._execute(state, delay);
if (error) {
return error;
}
else if (this.pending === false && this.id != null) {
this.id = this.recycleAsyncId(this.scheduler, this.id, null);
}
};
2022-04-07 07:06:43 +00:00
AsyncAction.prototype._execute = function (state, _delay) {
2022-01-21 08:28:41 +00:00
var errored = false;
2022-04-07 07:06:43 +00:00
var errorValue;
2022-01-21 08:28:41 +00:00
try {
this.work(state);
}
catch (e) {
errored = true;
2022-04-07 07:06:43 +00:00
errorValue = e ? e : new Error('Scheduled action threw falsy error');
2022-01-21 08:28:41 +00:00
}
if (errored) {
this.unsubscribe();
return errorValue;
}
};
2022-04-07 07:06:43 +00:00
AsyncAction.prototype.unsubscribe = function () {
if (!this.closed) {
var _a = this, id = _a.id, scheduler = _a.scheduler;
var actions = scheduler.actions;
this.work = this.state = this.scheduler = null;
this.pending = false;
arrRemove(actions, this);
if (id != null) {
this.id = this.recycleAsyncId(scheduler, id, null);
}
this.delay = null;
_super.prototype.unsubscribe.call(this);
2022-01-21 08:28:41 +00:00
}
};
return AsyncAction;
}(Action));
export { AsyncAction };
2022-04-07 07:06:43 +00:00
//# sourceMappingURL=AsyncAction.js.map