method trimWorkingSet

void trimWorkingSet(bool completely);

Argumente

Zurückgegebener Wert

This method trims the minimum and maximum working set sizes for the specified process. If aCompletely parameter true, temporarily trims the working set of the specified process to zero. This essentially swaps the process out of physical RAM memory.
function onTrimSize()
{
    appUtils.trimWorkingSet(true);
}