Deprecated API
Contents
-
Deprecated Classes
-
Deprecated Enum ClassesEnum ClassDescriptionUse
PlatformEnumdirectly.PlatformEnum.getCurrentPlatform()returns the current platform; FFM support is available forPlatformEnum.MACOS,PlatformEnum.LINUX, andPlatformEnum.WINDOWS.
-
Deprecated MethodsMethodDescriptionUse
PlatformEnum.getCurrentPlatform()instead.UsePlatformEnum.getCurrentPlatform()and callPlatformEnum.getName()on the result.UseOSProcess.getResidentMemory()for the true RSS value, orOSProcess.getPrivateResidentMemory()for the private working set / footprint value displayed by graphical system monitors. On Windows, this method delegates toOSProcess.getPrivateResidentMemory()for backwards compatibility; on all other platforms it delegates toOSProcess.getResidentMemory().UsePlatformEnum.getCurrentPlatform()instead.UsePlatformEnum.getCurrentPlatform()instead.
-
Deprecated Constructors