SlidingPercentile

data class SlidingPercentile(val maxSampleCount: Int = 5, val percentile: Double = 0.7) : BandwidthEstimationMode

Use a sliding percentile window to average the bandwidth.

Constructors

Link copied to clipboard
constructor(maxSampleCount: Int = 5, percentile: Double = 0.7)

Properties

Link copied to clipboard

The size of the sliding window.

Link copied to clipboard
val percentile: Double = 0.7

The percentile to use for the sliding window.