Exemplo n.º 1
0
 /**
  * Create a QuantileDigest with a maximum error guarantee of "maxError" and exponential decay with
  * factor "alpha".
  *
  * @param maxError the max error tolerance
  * @param alpha the exponential decay factor
  */
 public QuantileDigest(double maxError, double alpha) {
   this(maxError, alpha, Ticker.systemTicker(), true);
 }