MultipathStats
Aggregates statistics of each network path in multipath transmission.
public static class MultipathStats {
public int lanTxBytes;
public int lanRxBytes;
public int wifiTxBytes;
public int wifiRxBytes;
public int mobileTxBytes;
public int mobileRxBytes;
public int activePathNum;
public PathStats[] pathStats;
}
- Since:
- Available since v4.6.0.
Attributes
- lanTxBytes
- The total number of bytes sent over LAN.
- lanRxBytes
- The total number of bytes received over LAN.
- wifiTxBytes
- The total number of bytes sent over Wi-Fi.
- wifiRxBytes
- The total number of bytes received over Wi-Fi.
- mobileTxBytes
- The total number of bytes sent over the mobile network.
- mobileRxBytes
- The total number of bytes received over the mobile network.
- activePathNum
- The number of currently active transmission paths.
- pathStats
- An array of statistics for each active transmission path. See PathStats.