Examples of RuntimeSystemInfo


Examples of proj.zoie.admin.client.jmx.RuntimeSystemInfo

    }
    return times;
  }
 
  public RuntimeSystemInfo getRuntimeSystemInfo(){
    RuntimeSystemInfo sysInfo = new RuntimeSystemInfo();
    Runtime rt = Runtime.getRuntime();
    sysInfo.setFreeMemory(rt.freeMemory());
    sysInfo.setMaxMemory(rt.maxMemory());
    sysInfo.setNumThreads(TMB.getThreadCount());
   
    long[] times = getAllThreadCPUTimes();
    sysInfo.setCpuTime(times[0]);
    sysInfo.setUserTime(times[1]);
    return sysInfo;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.