mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-17 21:06:11 +00:00
Add uptime & memory related functions to FUtil
This commit is contained in:
parent
72bab1e2ed
commit
6c426644f6
@ -1,5 +1,6 @@
|
|||||||
package me.totalfreedom.totalfreedommod.util;
|
package me.totalfreedom.totalfreedommod.util;
|
||||||
|
|
||||||
|
import com.earth2me.essentials.utils.DateUtil;
|
||||||
import me.totalfreedom.totalfreedommod.TotalFreedomMod;
|
import me.totalfreedom.totalfreedommod.TotalFreedomMod;
|
||||||
import me.totalfreedom.totalfreedommod.config.ConfigEntry;
|
import me.totalfreedom.totalfreedommod.config.ConfigEntry;
|
||||||
import org.apache.commons.io.FileUtils;
|
import org.apache.commons.io.FileUtils;
|
||||||
@ -16,6 +17,7 @@ import org.bukkit.scheduler.BukkitRunnable;
|
|||||||
import org.bukkit.scheduler.BukkitTask;
|
import org.bukkit.scheduler.BukkitTask;
|
||||||
|
|
||||||
import java.io.*;
|
import java.io.*;
|
||||||
|
import java.lang.management.ManagementFactory;
|
||||||
import java.net.HttpURLConnection;
|
import java.net.HttpURLConnection;
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
import java.text.ParseException;
|
import java.text.ParseException;
|
||||||
@ -829,6 +831,26 @@ public class FUtil
|
|||||||
return total / longs.length;
|
return total / longs.length;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static String getUptime()
|
||||||
|
{
|
||||||
|
return DateUtil.formatDateDiff(ManagementFactory.getRuntimeMXBean().getStartTime());
|
||||||
|
}
|
||||||
|
|
||||||
|
public static double getMaxMem()
|
||||||
|
{
|
||||||
|
return Runtime.getRuntime().maxMemory() / 1024f / 1024f;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static double getTotalMem()
|
||||||
|
{
|
||||||
|
return Runtime.getRuntime().totalMemory() / 1024f / 1024f;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static double getFreeMem()
|
||||||
|
{
|
||||||
|
return Runtime.getRuntime().freeMemory() / 1024f / 1024f;
|
||||||
|
}
|
||||||
|
|
||||||
public static class PaginationList<T> extends ArrayList<T>
|
public static class PaginationList<T> extends ArrayList<T>
|
||||||
{
|
{
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user