com.clearspring.analytics.stream.quantile.IQuantileEstimator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stream-lib Show documentation
Show all versions of stream-lib Show documentation
A library for summarizing data in streams for which it is infeasible to store all events
The newest version!
package com.clearspring.analytics.stream.quantile;
public interface IQuantileEstimator {
void offer(long value);
long getQuantile(double q);
}