|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface TaskExecutionListener
A TaskExecutionListener is notified of the execution of the tasks in a build.
You can add a TaskExecutionListener to a build using TaskExecutionGraph.addTaskExecutionListener(org.gradle.api.execution.TaskExecutionListener)
| Method Summary | |
|---|---|
void |
afterExecute(Task task,
java.lang.Throwable failure)
This method is call immediately after a task has been executed. |
void |
beforeExecute(Task task)
This method is called immediately before a task is executed. |
| Method Detail |
|---|
void beforeExecute(Task task)
task - The task about to be executed. Never null.
void afterExecute(Task task,
java.lang.Throwable failure)
task - The task which was executed. Never null.failure - The exception which was thrown by the task, if any. Null if the task completed successfully.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||