Class TaskGraphCalculationFinished_1_0

java.lang.Object
com.gradle.scan.eventmodel.gradle.TaskGraphCalculationFinished_1_0
All Implemented Interfaces:
com.gradle.scan.eventmodel.EventData
Direct Known Subclasses:
TaskGraphCalculationFinished_1_1

@GradleVersion(since="4.0") @PluginVersion(since="1.9", until="1.11") public class TaskGraphCalculationFinished_1_0 extends Object implements com.gradle.scan.eventmodel.EventData
Emitted when the task graph for a build has been calculated.
  • Field Details

    • requestedTaskPaths

      @Nullable("if the task graph calculation failed, for plugin version 3.12+") public final @Nullable("if the task graph calculation failed, for plugin version 3.12+") List<String> requestedTaskPaths
      The “set” of task paths that were effectively requested for the build.

      This does not represent the entire set of tasks to be executed during the build. Instead, it is the full set of tasks that were explicitly requested resolved to. For example, given an invocation of “gradle build” and many projects with a task of this name, this list will contain the path to the "build" task of each project.

      The list is sorted alphabetically.

      null if the task graph calculation failed, for plugin version 3.12+.

    • excludedTaskPaths

      @Nullable("if the task graph calculation failed, for plugin version 3.12+") public final @Nullable("if the task graph calculation failed, for plugin version 3.12+") List<String> excludedTaskPaths
      The “set” of task paths that were effectively requested to be excluded.

      For example, given an invocation of “gradle -x build” and many projects with a task of this name, this list will contain the path to the "build" task of each project.

      The list is sorted alphabetically.

      null if the task graph calculation failed, for plugin version 3.12+.

  • Constructor Details

    • TaskGraphCalculationFinished_1_0

      public TaskGraphCalculationFinished_1_0(@Nullable @Nullable List<String> requestedTaskPaths, @Nullable @Nullable List<String> excludedTaskPaths)
  • Method Details