CronSchedulerOptions constructor

const CronSchedulerOptions({
  1. required void onFire(
    1. String prompt
    ),
  2. required bool isLoading(),
  3. bool assistantMode = false,
  4. void onFireTask(
    1. CronTask task
    )?,
  5. void onMissed(
    1. List<CronTask> tasks
    )?,
  6. String? dir,
  7. String? lockIdentity,
  8. CronJitterConfig getJitterConfig()?,
  9. bool isKilled()?,
  10. bool filter(
    1. CronTask t
    )?,
})

Implementation

const CronSchedulerOptions({
  required this.onFire,
  required this.isLoading,
  this.assistantMode = false,
  this.onFireTask,
  this.onMissed,
  this.dir,
  this.lockIdentity,
  this.getJitterConfig,
  this.isKilled,
  this.filter,
});