Get information about the amount of memory used by the current process (i.e. this application).
Availability:
First available in version 3.7 build 197.
Input Parameters:
None.
Output Parameters:
result - Total amount of memory in KB used by this process.
Asynchronous Mode:
When this method is called asynchronously, a return object containing the output parameters is passed to the specified callback function.
ssCore.SysInfo.getProcessMemoryInfo( paramsObject [, callbackParamsObject] [, errorParamsObject] );
Synchronous Mode:
When this method is called synchronously, a return object containing the output parameters is returned to the caller immediately.
var returnObject = ssCore.SysInfo.getProcessMemoryInfo( paramsObject );
Notes:
None.