Class BasicMemoryStats_1_0

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

@GradleVersion(since="2.0") @PluginVersion(since="1.0", until="1.7") public class BasicMemoryStats_1_0 extends Object implements com.gradle.scan.eventmodel.EventData
An EventData containing memory details of the JVM that executed the build.

An event stream will contain a single BasicMemoryStats_1_0.

  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final long
    The amount of free memory in the JVM.
    final long
    The maximum amount of memory that the JVM will attempt to use.
    final long
    The total amount of memory in the JVM.
  • Constructor Summary

    Constructors
    Constructor
    Description
    BasicMemoryStats_1_0(long free, long total, long max)
     
  • 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

    • free

      public final long free
      The amount of free memory in the JVM.
      See Also:
    • total

      public final long total
      The total amount of memory in the JVM.
      See Also:
    • max

      public final long max
      The maximum amount of memory that the JVM will attempt to use.
      See Also:
  • Constructor Details

    • BasicMemoryStats_1_0

      public BasicMemoryStats_1_0(long free, long total, long max)
  • Method Details