Package org.gradle.api.execution
Interface TaskActionListener
-
public interface TaskActionListenerA
TaskActionListeneris notified of the actions that a task performs.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidafterActions(Task task)This method is called immediately after the task has completed performing its actions.voidbeforeActions(Task task)This method is called immediately before the task starts performing its actions.
-
-
-
Method Detail
-
beforeActions
void beforeActions(Task task)
This method is called immediately before the task starts performing its actions.- Parameters:
task- The task which is to perform some actions.
-
afterActions
void afterActions(Task task)
This method is called immediately after the task has completed performing its actions.- Parameters:
task- The task which has performed some actions.
-
-