Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update quarkus-scheduler startMode documentation #36769

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,15 @@ public enum StartMode {
NORMAL,

/**
* The scheduler will be started even if no scheduled business methods are found.
* <p>
* This is necessary for "pure" programmatic scheduling.
* The scheduler will be started even if no scheduled business methods are found. This is necessary for "pure"
* programmatic scheduling.
*/
FORCED,

/**
* Just like the {@link #FORCED} mode but the scheduler will not start triggering jobs until {@link Scheduler#resume()}
* is called.
* <p>
* This can be useful to run some initialization logic that needs to be performed before the scheduler starts.
* is called. This can be useful to run some initialization logic that needs to be performed before the scheduler
* starts.
*/
HALTED;
}
Expand Down
Loading