Package org.openspaces.admin.os
Interface OperatingSystemsDetails
- All Known Implementing Classes:
DefaultOperatingSystemsDetails
public interface OperatingSystemsDetails
An aggregated view of all the currently discovered
OperatingSystemDetails.- Author:
- kimchy
-
Method Summary
Modifier and TypeMethodDescriptionintReturns the summation of allOperatingSystemDetails.getAvailableProcessors().longReturns the summation of allOperatingSystemDetails.getTotalPhysicalMemorySizeInBytes().doubleReturns the summation of allOperatingSystemDetails.getTotalPhysicalMemorySizeInGB().doubleReturns the summation of allOperatingSystemDetails.getTotalPhysicalMemorySizeInMB().longReturns the summation of allOperatingSystemDetails.getTotalSwapSpaceSizeInBytes().doubleReturns the summation of allOperatingSystemDetails.getTotalSwapSpaceSizeInGB().doubleReturns the summation of allOperatingSystemDetails.getTotalSwapSpaceSizeInMB().
-
Method Details
-
getAvailableProcessors
int getAvailableProcessors()Returns the summation of allOperatingSystemDetails.getAvailableProcessors(). -
getTotalSwapSpaceSizeInBytes
long getTotalSwapSpaceSizeInBytes()Returns the summation of allOperatingSystemDetails.getTotalSwapSpaceSizeInBytes(). -
getTotalSwapSpaceSizeInMB
double getTotalSwapSpaceSizeInMB()Returns the summation of allOperatingSystemDetails.getTotalSwapSpaceSizeInMB(). -
getTotalSwapSpaceSizeInGB
double getTotalSwapSpaceSizeInGB()Returns the summation of allOperatingSystemDetails.getTotalSwapSpaceSizeInGB(). -
getTotalPhysicalMemorySizeInBytes
long getTotalPhysicalMemorySizeInBytes()Returns the summation of allOperatingSystemDetails.getTotalPhysicalMemorySizeInBytes(). -
getTotalPhysicalMemorySizeInMB
double getTotalPhysicalMemorySizeInMB()Returns the summation of allOperatingSystemDetails.getTotalPhysicalMemorySizeInMB(). -
getTotalPhysicalMemorySizeInGB
double getTotalPhysicalMemorySizeInGB()Returns the summation of allOperatingSystemDetails.getTotalPhysicalMemorySizeInGB().
-