Header menu logo fable-electron-docs-api

ProcessMemoryInfo Type

Constructors

Constructor Description

ProcessMemoryInfo(residentSet, private, shared)

Full Usage: ProcessMemoryInfo(residentSet, private, shared)

Parameters:
    residentSet : int - ⚠ OS Compatibility: WIN ✔ | MAC ❌ | LIN ✔ | MAS ❌ || The amount of memory currently pinned to actual physical RAM in Kilobytes.
    private : int - The amount of memory not shared by other processes, such as JS heap or HTML content in Kilobytes.
    shared : int - The amount of memory shared between processes, typically memory consumed by the Electron code itself in Kilobytes.

Returns: ProcessMemoryInfo
residentSet : int

⚠ OS Compatibility: WIN ✔ | MAC ❌ | LIN ✔ | MAS ❌ || The amount of memory currently pinned to actual physical RAM in Kilobytes.

private : int

The amount of memory not shared by other processes, such as JS heap or HTML content in Kilobytes.

shared : int

The amount of memory shared between processes, typically memory consumed by the Electron code itself in Kilobytes.

Returns: ProcessMemoryInfo

Instance members

Instance member Description

this.private

Full Usage: this.private

The amount of memory not shared by other processes, such as JS heap or HTML content in Kilobytes.

this.residentSet

Full Usage: this.residentSet

⚠ OS Compatibility: WIN ✔ | MAC ❌ | LIN ✔ | MAS ❌ The amount of memory currently pinned to actual physical RAM in Kilobytes.

this.shared

Full Usage: this.shared

The amount of memory shared between processes, typically memory consumed by the Electron code itself in Kilobytes.

Type something to start searching.