File size: 1,243 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
import { Subscription } from '../Subscription';
import { SchedulerAction, SchedulerLike } from '../types';
export function executeSchedule(
parentSubscription: Subscription,
scheduler: SchedulerLike,
work: () => void,
delay: number,
repeat: true
): void;
export function executeSchedule(
parentSubscription: Subscription,
scheduler: SchedulerLike,
work: () => void,
delay?: number,
repeat?: false
): Subscription;
export function executeSchedule(
parentSubscription: Subscription,
scheduler: SchedulerLike,
work: () => void,
delay = 0,
repeat = false
): Subscription | void {
const scheduleSubscription = scheduler.schedule(function (this: SchedulerAction<any>) {
work();
if (repeat) {
parentSubscription.add(this.schedule(null, delay));
} else {
this.unsubscribe();
}
}, delay);
parentSubscription.add(scheduleSubscription);
if (!repeat) {
// Because user-land scheduler implementations are unlikely to properly reuse
// Actions for repeat scheduling, we can't trust that the returned subscription
// will control repeat subscription scenarios. So we're trying to avoid using them
// incorrectly within this library.
return scheduleSubscription;
}
}
|