TenantAtlas/apps/platform/.pnpm-store/v10/files/9c/0d74561a973988a4d0fe40f0de3d94dde146c9597c942c85a6c535f4a4c175c09ea6c8f733ba462fc6fa47a6467cde569c0c9191316a657939240b6ba54612
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

16 lines
505 B
Plaintext

export function executeSchedule(parentSubscription, scheduler, work, delay = 0, repeat = false) {
const scheduleSubscription = scheduler.schedule(function () {
work();
if (repeat) {
parentSubscription.add(this.schedule(null, delay));
}
else {
this.unsubscribe();
}
}, delay);
parentSubscription.add(scheduleSubscription);
if (!repeat) {
return scheduleSubscription;
}
}
//# sourceMappingURL=executeSchedule.js.map