()
| 120 | } |
| 121 | |
| 122 | public static MemoryInfo memoryInfo() { |
| 123 | Runtime runtime = Runtime.getRuntime(); |
| 124 | return new MemoryInfo(runtime.totalMemory(), runtime.freeMemory(), runtime.maxMemory()); |
| 125 | } |
| 126 | |
| 127 | public static ThreadInfo threadInfo(){ |
| 128 | return new ThreadInfo(Thread.activeCount()); |