MemoryPoolUsage

data class MemoryPoolUsage(@Json(name = "name") val name: String, @Json(name = "peakMemory") val peakMemory: Long, @Json(name = "maxMemory") val maxMemory: Long)

Memory usage of a JVM memory pool.

Parameters

name

The name of the memory pool.

peakMemory

The peak memory usage of this memory pool while running the build, in bytes.

maxMemory

The maximum amount of memory in bytes that can be used for memory management. -1 if the maximum memory size is undefined.

Constructors

Link copied to clipboard
constructor(@Json(name = "name") name: String, @Json(name = "peakMemory") peakMemory: Long, @Json(name = "maxMemory") maxMemory: Long)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard