Class JobRunrConfiguration.JobSchedulerConfiguration
- java.lang.Object
-
- org.jobrunr.quarkus.autoconfigure.JobRunrConfiguration.JobSchedulerConfiguration
-
- Enclosing class:
- JobRunrConfiguration
public static class JobRunrConfiguration.JobSchedulerConfiguration extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description booleanenabledEnables the scheduling of jobs.java.util.Optional<java.lang.String>jobDetailsGeneratorDefines the JobDetailsGenerator to use.
-
Constructor Summary
Constructors Constructor Description JobSchedulerConfiguration()
-
-
-
Field Detail
-
enabled
@ConfigItem(defaultValue="true") public boolean enabled
Enables the scheduling of jobs.
-
jobDetailsGenerator
@ConfigItem public java.util.Optional<java.lang.String> jobDetailsGenerator
Defines the JobDetailsGenerator to use. This should be the fully qualified classname of the JobDetailsGenerator, and it should have a default no-argument constructor.
-
-