Class TaskRealizationStarted_1_0
java.lang.Object
com.gradle.scan.eventmodel.gradle.TaskRealizationStarted_1_0
- All Implemented Interfaces:
com.gradle.scan.eventmodel.EventData
- Direct Known Subclasses:
TaskRealizationStarted_1_1
@GradleVersion(since="4.9")
@PluginVersion(since="1.14",
until="3.18")
public class TaskRealizationStarted_1_0
extends Object
implements com.gradle.scan.eventmodel.EventData
An
EventData that is published when a task is realized.
When a task is created eagerly using TaskContainer.create() or TaskContainer.replace(),
this event will be emitted with the eager flag set to true. When a task is registered and then created
later, this event will be emitted with the eager flag set to false.
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal StringThe path of the build this task belongs to.final booleanWhether the task was created eagerly using e.g.final longThe unique id of the task realization.final booleanTrue when this task was replacing an existing task.final StringThe fully qualified name of the task. -
Constructor Summary
ConstructorsConstructorDescriptionTaskRealizationStarted_1_0(long id, String buildPath, String taskPath, boolean eager, boolean replacement) -
Method Summary
-
Field Details
-
id
public final long idThe unique id of the task realization. -
buildPath
The path of the build this task belongs to. -
taskPath
The fully qualified name of the task. -
eager
public final boolean eagerWhether the task was created eagerly using e.g.TaskContainer.create()orTaskContainer.replace(). -
replacement
public final boolean replacementTrue when this task was replacing an existing task.
-
-
Constructor Details
-
TaskRealizationStarted_1_0
-
-
Method Details