PathStats
用于获取特定网络路径的统计数据。
Dart
class PathStats implements AgoraSerializable {
const PathStats({this.type, this.txKBitRate, this.rxKBitRate});
(name: 'type')
final MultipathType? type;
(name: 'txKBitRate')
final int? txKBitRate;
(name: 'rxKBitRate')
final int? rxKBitRate;
factory PathStats.fromJson(Map<String, dynamic> json) =>
_$PathStatsFromJson(json);
Map<String, dynamic> toJson() => _$PathStatsToJson(this);
}
自从
自 v4.6.2 版本新增。
type
网络路径的类型。详见 MultipathType。
txKBitRate
该路径的传输码率,单位为 Kbps。
rxKBitRate
该路径的接收码率,单位为 Kbps。