LastmileProbeOneWayResult
上行或下行 Last mile 网络质量探测结果。
C#
public class LastmileProbeOneWayResult
{
public LastmileProbeOneWayResult()
{
}
public LastmileProbeOneWayResult(uint packetLossRate, uint jitter, uint availableBandwidth)
{
this.packetLossRate = packetLossRate;
this.jitter = jitter;
this.availableBandwidth = availableBandwidth;
}
public uint packetLossRate { set; get; }
public uint jitter { set; get; }
public uint availableBandwidth { set; get; }
}
packetLossRate
丢包率。
jitter
网络抖动 (ms)。
availableBandwidth
可用网络带宽预估 (bps)。