Skip to content
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