Interface BandwidthMeter.EventListener
-
- All Known Subinterfaces:
AnalyticsCollector
- All Known Implementing Classes:
DefaultAnalyticsCollector
- Enclosing interface:
- BandwidthMeter
public static interface BandwidthMeter.EventListener
A listener ofBandwidthMeter
events.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
BandwidthMeter.EventListener.EventDispatcher
Event dispatcher which allows listener registration.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onBandwidthSample(int elapsedMs, long bytesTransferred, long bitrateEstimate)
Called periodically to indicate that bytes have been transferred or the estimated bitrate has changed.
-
-
-
Method Detail
-
onBandwidthSample
void onBandwidthSample(int elapsedMs, long bytesTransferred, long bitrateEstimate)
Called periodically to indicate that bytes have been transferred or the estimated bitrate has changed.Note: The estimated bitrate is typically derived from more information than just
bytesTransferred
andelapsedMs
.- Parameters:
elapsedMs
- The time taken to transferbytesTransferred
, in milliseconds. This is at most the elapsed time since the last callback, but may be less if there were periods during which data was not being transferred.bytesTransferred
- The number of bytes transferred since the last callback.bitrateEstimate
- The estimated bitrate in bits/sec.
-
-