MultipathStats

Used to aggregate statistics of 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 bytes sent through the LAN path.
lanRxBytes
Total bytes received through the LAN path.
wifiTxBytes
Total bytes sent through the Wi-Fi path.
wifiRxBytes
Total bytes received through the Wi-Fi path.
mobileTxBytes
Total bytes sent through the mobile network path.
mobileRxBytes
Total bytes received through the mobile network path.
activePathNum
The number of currently active transmission paths.
pathStats
An array of statistics for each active transmission path. See PathStats.