Skip to content

Add support for cancel tasks. #33

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
7 changes: 7 additions & 0 deletions src/main/java/com/github/dexecutor/core/task/Task.java
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,13 @@ public void setParentResults(ExecutionResults<T, R> parentResults) {
* @return the result of task execution
*/
public abstract R execute();

/**
* Method to cancel a pending / running task. It's up to the execute implementation to care (or not) for this cancel "signal". Default behavior is NOP.
*/
public void cancel() {
}

/**
* When using retry behavior, execution error should not be considered until the last retry, this would define when execution error should be considered
*/
Expand Down