com.clearspring.analytics.stream.frequency.IFrequency 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.frequency;
public interface IFrequency {
void add(long item, long count);
void add(String item, long count);
long estimateCount(long item);
long estimateCount(String item);
long size();
}