Package com.gradle.scan.eventmodel.maven
Class MvnBasicMemoryStats_1_0
java.lang.Object
com.gradle.scan.eventmodel.maven.MvnBasicMemoryStats_1_0
- All Implemented Interfaces:
com.gradle.scan.eventmodel.EventData
@MavenVersion(since="3.3.1")
@MavenExtensionVersion(since="1.0")
public class MvnBasicMemoryStats_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 MvnBasicMemoryStats_1_0
.
-
Field Summary
Modifier and TypeFieldDescriptionfinal long
Represents the cumulative CPU time spent in milliseconds performing JVM Garbage Collection while running the build.final long
The maximum amount of memory that the JVM will attempt to use.final List
<? extends MvnMemoryPoolSnapshot_1_0> The statistics for every memory pool used by the Maven JVM while running the build. -
Constructor Summary
ConstructorDescriptionMvnBasicMemoryStats_1_0
(long max, List<? extends MvnMemoryPoolSnapshot_1_0> peakSnapshots, long gcTime) -
Method Summary
-
Field Details
-
max
public final long maxThe maximum amount of memory that the JVM will attempt to use.- See Also:
-
peakSnapshots
The statistics for every memory pool used by the Maven JVM while running the build. -
gcTime
public final long gcTimeRepresents the cumulative CPU time spent in milliseconds performing JVM Garbage Collection while running the build.
-
-
Constructor Details
-
MvnBasicMemoryStats_1_0
public MvnBasicMemoryStats_1_0(long max, List<? extends MvnMemoryPoolSnapshot_1_0> peakSnapshots, long gcTime)
-
-
Method Details