com.netflix.stats.distribution
Interface DataCollector

All Known Implementing Classes:
DataAccumulator, DataBuffer, DataDistribution, Distribution, Histogram

public interface DataCollector

An object that collects new values incrementally.


Method Summary
 void noteValue(double val)
          Adds a value to the collected data.
 

Method Detail

noteValue

void noteValue(double val)
Adds a value to the collected data. This must run very quickly, and so can safely be called in time-critical code.