MultipathStats
用于汇总多路径传输中各网络路径的统计数据。
TypeScript
export class MultipathStats {
lanTxBytes?: number;
lanRxBytes?: number;
wifiTxBytes?: number;
wifiRxBytes?: number;
mobileTxBytes?: number;
mobileRxBytes?: number;
activePathNum?: number;
pathStats?: PathStats[];
}
自从
自 v4.6.2 版本新增。
lanTxBytes
通过 LAN 路径发送的字节总数。
lanRxBytes
通过 LAN 路径接收的字节总数。
wifiTxBytes
通过 Wi-Fi 路径发送的字节总数。
wifiRxBytes
通过 Wi-Fi 路径接收的字节总数。
mobileTxBytes
通过移动网络路径发送的字节总数。
mobileRxBytes
通过移动网络路径接收的字节总数。
activePathNum
当前活跃的传输路径数量。
pathStats
每个活跃传输路径的统计信息数组。详见 PathStats。