Package | Description |
---|---|
com.comphenix.protocol.timing |
Modifier and Type | Field and Description |
---|---|
protected StatisticsStream |
HistogramStream.current
The current statistics stream we are updating.
|
Modifier and Type | Field and Description |
---|---|
protected java.util.List<StatisticsStream> |
HistogramStream.bins
Each bin in the histogram, indexed by time.
|
Modifier and Type | Method and Description |
---|---|
StatisticsStream |
StatisticsStream.add(StatisticsStream other)
Combine the two statistics.
|
StatisticsStream |
StatisticsStream.copy() |
StatisticsStream |
HistogramStream.getTotal()
Retrieve the total statistics of every bin in the histogram.
|
Modifier and Type | Method and Description |
---|---|
com.google.common.collect.ImmutableList<StatisticsStream> |
HistogramStream.getBins()
Retrieve an immutable view of every bin in the histogram.
|
java.util.Map<PacketType,StatisticsStream> |
TimedTracker.getStatistics()
Retrieve an map (indexed by packet type) of all relevant statistics.
|
Modifier and Type | Method and Description |
---|---|
StatisticsStream |
StatisticsStream.add(StatisticsStream other)
Combine the two statistics.
|
Constructor and Description |
---|
HistogramStream(java.util.List<StatisticsStream> bins,
StatisticsStream current,
int binWidth)
Construct a new histogram stream.
|
StatisticsStream(StatisticsStream other)
Construct a copy of the given stream.
|
Constructor and Description |
---|
HistogramStream(java.util.List<StatisticsStream> bins,
StatisticsStream current,
int binWidth)
Construct a new histogram stream.
|