Memory

@Serializable
data class Memory(val free: Long, val used: Long, val allocated: Long, val reservable: Long)

Memory statistics.

Constructors

Link copied to clipboard
constructor(free: Long, used: Long, allocated: Long, reservable: Long)

Properties

Link copied to clipboard

the amount of allocated memory in bytes

Link copied to clipboard
val free: Long

the amount of free memory in bytes

Link copied to clipboard

the amount of reservable memory in bytes

Link copied to clipboard
val used: Long

the amount of used memory in bytes