MultipathStats
Used to aggregate statistics for each network path in multipath transmission.
export class MultipathStats {
lanTxBytes?: number;
lanRxBytes?: number;
wifiTxBytes?: number;
wifiRxBytes?: number;
mobileTxBytes?: number;
mobileRxBytes?: number;
activePathNum?: number;
pathStats?: PathStats[];
}
- Since
- Available since v4.6.2.
Properties
- lanTxBytes
- Total number of bytes sent over the LAN path.
- lanRxBytes
- Total number of bytes received over the LAN path.
- wifiTxBytes
- Total number of bytes sent over the Wi-Fi path.
- wifiRxBytes
- Total number of bytes received over the Wi-Fi path.
- mobileTxBytes
- Total number of bytes sent over the mobile network path.
- mobileRxBytes
- Total number of bytes received over the mobile network path.
- activePathNum
- The number of currently active transmission paths.
- pathStats
- Array of statistics for each active transmission path. See PathStats.