Package org.gradle.api.execution
Interface TaskExecutionGraphListener
-
public interface TaskExecutionGraphListener
A
TaskExecutionGraphListener
is notified when theTaskExecutionGraph
has been populated. You can use this interface in your build file to perform some action based on the contents of the graph, before any tasks are actually executed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
graphPopulated(TaskExecutionGraph graph)
This method is called when theTaskExecutionGraph
has been populated, and before any tasks are executed.
-
-
-
Method Detail
-
graphPopulated
void graphPopulated(TaskExecutionGraph graph)
This method is called when the
TaskExecutionGraph
has been populated, and before any tasks are executed.- Parameters:
graph
- The graph. Never null.
-
-