Examples of recordValueWithCount()


Examples of org.HdrHistogram.AbstractHistogram.recordValueWithCount()

      if (histogram != null) {
         return histogram;
      }
      AbstractHistogram hist = new org.HdrHistogram.Histogram(maxValue, digits);
      for (int i = 0; i < compacted.ranges.length; ++i) {
         hist.recordValueWithCount(compacted.ranges[i], compacted.counts[i]);
      }
      return hist;
   }

   private void writeObject(ObjectOutputStream s) throws IOException {
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.