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

Scheduler docs - clarify the "concurrent execution strategy" #19369

Merged
merged 1 commit into from
Aug 12, 2021
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions docs/src/main/asciidoc/scheduler-reference.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,8 @@ void nonConcurrent() {

TIP: A CDI event of type `io.quarkus.scheduler.SkippedExecution` is fired when an execution of a scheduled method is skipped.

NOTE: Note that only executions within the same application instance are considered. This feature is not intended to work across the cluster.

[[conditional_execution]]
=== Conditional Execution

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,10 @@
}

/**
* Represents a strategy to handle concurrent execution of a scheduled method
* Represents a strategy to handle concurrent execution of a scheduled method.
* <p>
* Note that this strategy only considers executions within the same application instance. It's not intended to work
* across the cluster.
*/
enum ConcurrentExecution {

Expand Down