Package io.quarkus.scheduler.runtime
Interface SchedulerRuntimeConfig
@ConfigRoot(phase=RUN_TIME)
@ConfigMapping(prefix="quarkus.scheduler")
public interface SchedulerRuntimeConfig
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionbooleanenabled()If schedulers are enabled.Scheduled task will be flagged as overdue if next execution time is exceeded by this period.Scheduler can be started in different modes.
-
Method Details
-
enabled
@WithDefault("true") boolean enabled()If schedulers are enabled. -
overdueGracePeriod
Scheduled task will be flagged as overdue if next execution time is exceeded by this period. -
startMode
Scheduler can be started in different modes. By default, the scheduler is not started unless aScheduledbusiness method is found.
-