Interface SchedulerRuntimeConfig


@ConfigRoot(phase=RUN_TIME) @ConfigMapping(prefix="quarkus.scheduler") public interface SchedulerRuntimeConfig
  • Method Details

    • enabled

      @WithDefault("true") boolean enabled()
      If schedulers are enabled.
    • overdueGracePeriod

      @WithDefault("1") Duration overdueGracePeriod()
      Scheduled task will be flagged as overdue if next execution time is exceeded by this period.
    • startMode

      @WithDefault("normal") SchedulerRuntimeConfig.StartMode startMode()
      Scheduler can be started in different modes. By default, the scheduler is not started unless a Scheduled business method is found.