Package org.gradle.api.execution
Interface TaskActionListener
Deprecated.
This type is not supported when configuration caching is enabled.
A TaskActionListener is notified of the actions that a task performs.
- 
Method SummaryModifier and TypeMethodDescriptionvoidafterActions(Task task) Deprecated.This method is called immediately after the task has completed performing its actions.voidbeforeActions(Task task) Deprecated.This method is called immediately before the task starts performing its actions.
- 
Method Details- 
beforeActionsDeprecated.This method is called immediately before the task starts performing its actions.- Parameters:
- task- The task which is to perform some actions.
 
- 
afterActionsDeprecated.This method is called immediately after the task has completed performing its actions.- Parameters:
- task- The task which has performed some actions.
 
 
-