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

    Fields
    Modifier and Type
    Field
    Description
    final 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

    Constructors
    Constructor
    Description
    DaemonState_1_0(long startTime, int buildNumber, int numberOfRunningDaemons, long idleTimeout)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    int
     
     

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • startTime

      public final long startTime
      The time (milliseconds) since epoch at which the Gradle Daemon that ran the build was started.
    • buildNumber

      public final int buildNumber
      The number of previous builds executed by the Gradle Daemon that ran the build.
    • numberOfRunningDaemons

      public final int numberOfRunningDaemons
      The number of running Gradle Daemons.
    • idleTimeout

      public final long idleTimeout
      The 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