executeCronJobs method
- @protected
Call first time
Implementation
@protected
void executeCronJobs() {
if (_cronJobController.runners.isNotEmpty) {
throw ArgumentError("Call only once executeCronJobs");
}
if (cronJobs.isNotEmpty) {
for (var c in cronJobs.entries) {
_cronJobController.add(CronJobRunner(
period: c.value,
onCall: (d) {
callCronJob(c.key, d);
}));
}
}
_cronJobController.start();
}