projecte_ionic/node_modules/rxjs/_esm2015/internal/Scheduler.js
2022-02-09 18:30:03 +01:00

11 lines
353 B
JavaScript
Executable file

export class Scheduler {
constructor(SchedulerAction, now = Scheduler.now) {
this.SchedulerAction = SchedulerAction;
this.now = now;
}
schedule(work, delay = 0, state) {
return new this.SchedulerAction(this, work).schedule(state, delay);
}
}
Scheduler.now = () => Date.now();
//# sourceMappingURL=Scheduler.js.map