
com.infotel.seleniumrobot.grid.utils.MemoryInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of seleniumRobot-grid4 Show documentation
Show all versions of seleniumRobot-grid4 Show documentation
Selenium grid extension for mobile testing
The newest version!
package com.infotel.seleniumrobot.grid.utils;
public class MemoryInfo {
private long totalMemory;
private long freeMemory;
public MemoryInfo(long total, long free) {
totalMemory = total;
freeMemory = free;
}
public long getTotalMemory() {
return totalMemory / 1000000;
}
public long getFreeMemory() {
return freeMemory / 1000000;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy