Package io.quarkus.scheduler.runtime
Class SchedulerRuntimeConfig
- java.lang.Object
-
- io.quarkus.scheduler.runtime.SchedulerRuntimeConfig
-
@ConfigRoot(phase=RUN_TIME) public class SchedulerRuntimeConfig extends Object
-
-
Field Summary
Fields Modifier and Type Field Description booleanenabledIf schedulers are enabled.DurationoverdueGracePeriodScheduled task will be flagged as overdue if next execution time is exceeded by this period.
-
Constructor Summary
Constructors Constructor Description SchedulerRuntimeConfig()
-
-
-
Field Detail
-
enabled
@ConfigItem(defaultValue="true") public boolean enabled
If schedulers are enabled.
-
overdueGracePeriod
@ConfigItem(defaultValue="1") public Duration overdueGracePeriod
Scheduled task will be flagged as overdue if next execution time is exceeded by this period.
-
-