Package org.persvr.data.Method

Examples of org.persvr.data.Method.Timing


      return threadCount;
    if ("methodTimings".equals(key)) {
      List timingsObject = new PersistableArray(0);
      if(Method.timings != null)
        for(Map.Entry<Method, Timing> entry : Method.timings.entrySet()){
          Timing timing = entry.getValue();
          Persistable timingObject = new PersistableObject();
          timingObject.put("own", timingObject, timing.own/1000000000.0);
          timingObject.put("total", timingObject, timing.total/1000000000.0);
          timingObject.put("max", timingObject, timing.max/1000000000.0);
          timingObject.put("calls", timingObject, timing.calls);
View Full Code Here

TOP

Related Classes of org.persvr.data.Method.Timing

Copyright © 2018 www.massapicom. 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.