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

82 lines
2.5 KiB
JavaScript
Raw Normal View History

2022-01-21 08:28:41 +00:00
import { Action } from './Action';
2022-06-08 10:36:39 +00:00
import { intervalProvider } from './intervalProvider';
import { arrRemove } from '../util/arrRemove';
2022-01-21 08:28:41 +00:00
export class AsyncAction extends Action {
constructor(scheduler, work) {
super(scheduler, work);
this.scheduler = scheduler;
this.work = work;
this.pending = false;
}
schedule(state, delay = 0) {
2022-09-30 13:48:25 +00:00
var _a;
2022-01-21 08:28:41 +00:00
if (this.closed) {
return this;
}
this.state = state;
const id = this.id;
const scheduler = this.scheduler;
if (id != null) {
this.id = this.recycleAsyncId(scheduler, id, delay);
}
this.pending = true;
this.delay = delay;
2022-09-30 13:48:25 +00:00
this.id = (_a = this.id) !== null && _a !== void 0 ? _a : this.requestAsyncId(scheduler, this.id, delay);
2022-01-21 08:28:41 +00:00
return this;
}
2022-06-08 10:36:39 +00:00
requestAsyncId(scheduler, _id, delay = 0) {
return intervalProvider.setInterval(scheduler.flush.bind(scheduler, this), delay);
2022-01-21 08:28:41 +00:00
}
2022-06-08 10:36:39 +00:00
recycleAsyncId(_scheduler, id, delay = 0) {
if (delay != null && this.delay === delay && this.pending === false) {
2022-01-21 08:28:41 +00:00
return id;
}
2022-09-30 13:48:25 +00:00
if (id != null) {
intervalProvider.clearInterval(id);
}
2022-01-21 08:28:41 +00:00
return undefined;
}
execute(state, delay) {
if (this.closed) {
return new Error('executing a cancelled action');
}
this.pending = false;
const 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-06-08 10:36:39 +00:00
_execute(state, _delay) {
2022-01-21 08:28:41 +00:00
let errored = false;
2022-06-08 10:36:39 +00:00
let errorValue;
2022-01-21 08:28:41 +00:00
try {
this.work(state);
}
catch (e) {
errored = true;
2022-06-08 10:36:39 +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-06-08 10:36:39 +00:00
unsubscribe() {
if (!this.closed) {
const { id, scheduler } = this;
const { actions } = scheduler;
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.unsubscribe();
2022-01-21 08:28:41 +00:00
}
}
}
//# sourceMappingURL=AsyncAction.js.map