Class DaemonState_1_0
java.lang.Object
com.gradle.scan.eventmodel.gradle.DaemonState_1_0
- All Implemented Interfaces:
com.gradle.scan.eventmodel.EventData
- Direct Known Subclasses:
DaemonState_1_1
@GradleVersion(since="3.0")
@PluginVersion(since="1.0",
until="1.9")
public class DaemonState_1_0
extends Object
implements com.gradle.scan.eventmodel.EventData
An
EventData
containing details about the state of the Gradle Daemon running the build.
Zero or one DaemonState_1_0
events may be published.
-
Field Summary
Modifier and TypeFieldDescriptionfinal int
The number of previous builds executed by the Gradle Daemon that ran the build.final long
The idle timeout (milliseconds) of the Gradle Daemon that ran the build.final int
The number of running Gradle Daemons.final long
The time (milliseconds) since epoch at which the Gradle Daemon that ran the build was started. -
Constructor Summary
ConstructorDescriptionDaemonState_1_0
(long startTime, int buildNumber, int numberOfRunningDaemons, long idleTimeout) -
Method Summary
-
Field Details
-
startTime
public final long startTimeThe time (milliseconds) since epoch at which the Gradle Daemon that ran the build was started. -
buildNumber
public final int buildNumberThe number of previous builds executed by the Gradle Daemon that ran the build. -
numberOfRunningDaemons
public final int numberOfRunningDaemonsThe number of running Gradle Daemons. -
idleTimeout
public final long idleTimeoutThe idle timeout (milliseconds) of the Gradle Daemon that ran the build.
-
-
Constructor Details
-
DaemonState_1_0
public DaemonState_1_0(long startTime, int buildNumber, int numberOfRunningDaemons, long idleTimeout)
-
-
Method Details