public interface

BandwidthMeter.EventListener

 androidx.media3.exoplayer.upstream.BandwidthMeter.EventListener

Subclasses:

DefaultAnalyticsCollector, AnalyticsCollector

Overview

A listener of BandwidthMeter events.

Summary

Methods
public voidonBandwidthSample(int elapsedMs, long bytesTransferred, long bitrateEstimate)

Called periodically to indicate that bytes have been transferred or the estimated bitrate has changed.

Methods

public 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 and elapsedMs.

Parameters:

elapsedMs: The time taken to transfer bytesTransferred, 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.