Skip to content

Commit

Permalink
update quarkus-scheduler startMode documentation
Browse files Browse the repository at this point in the history
* removed the paragraph tags from the enum javadoc because they don't translate well into asciidoc and subsequently HTML tooltips
* potential fix for #36401

Signed-off-by:Nathan Erwin <[email protected]>
  • Loading branch information
nderwin committed Oct 30, 2023
1 parent 3149ece commit df8b7e0
Showing 1 changed file with 4 additions and 6 deletions.
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

0 comments on commit df8b7e0

Please sign in to comment.