VirtualMemory

interface VirtualMemory

VirtualMemory represents the virtual memory statistics of the system. It provides detailed information about the swap memory, virtual memory limits, and usage statistics.

Author

N7ghtm4r3

Inheritors

VirtualMemoryImpl

Properties

Link copied to clipboard
abstract val swapPagesIn: Long

swapPagesIn The number of pages that have been swapped in from disk into memory.

Link copied to clipboard
abstract val swapPagesOut: Long

swapPagesOut The number of pages that have been swapped out from memory to disk.

Link copied to clipboard
abstract val swapTotal: Long

swapTotal The total amount of swap space available in the system (in bytes).

Link copied to clipboard
abstract val swapUsed: Long

swapUsed The amount of swap space currently being used (in bytes).

Link copied to clipboard
abstract val virtualInUse: Long

virtualInUse The amount of virtual memory currently in use (in bytes).

Link copied to clipboard
abstract val virtualMax: Long

virtualMax The maximum amount of virtual memory that the system can use (in bytes).