Lines Matching refs:real

5 The traffic management module allows you to query real-time or historical data traffic by the speci…
9 - Obtaining real-time traffic data by NIC or UID
24 | getIfaceRxBytes(nic: string, callback: AsyncCallback\<number>): void; | Obtains the real-time dow…
25 | getIfaceTxBytes(nic: string, callback: AsyncCallback\<number>): void; | Obtains the real-time upl…
26 | getCellularRxBytes(callback: AsyncCallback\<number>): void; | Obtains the real-time downlink dat…
27 | getCellularTxBytes(callback: AsyncCallback\<number>): void; | Obtains the real-time uplink data …
28 | getAllRxBytes(callback: AsyncCallback\<number>): void; | Obtains the real-time downlink dat…
29 | getAllTxBytes(callback: AsyncCallback\<number>): void; | Obtains the real-time uplink data …
30 | getUidRxBytes(uid: number, callback: AsyncCallback\<number>): void; | Obtains the real-time downl…
31 | getUidTxBytes(uid: number, callback: AsyncCallback\<number>): void; | Obtains the real-time uplin…
34 | getSockfdRxBytes(sockfd: number, callback: AsyncCallback\<number>): void; | Obtains the real-time…
35 | getSockfdTxBytes(sockfd: number, callback: AsyncCallback\<number>): void; | Obtains the real-time…
43 1. Obtain the real-time data traffic of the specified NIC.
44 2. Obtain the real-time data traffic of the cellular network.
45 3. Obtain the real-time data traffic of all NICs.
46 4. Obtain the real-time data traffic of the specified application.
47 5. Obtains the real-time data traffic of the specified socket.
54 // Obtain the real-time downlink data traffic of the specified NIC.
59 // Obtain the real-time uplink data traffic of the specified NIC.
64 // Obtain the real-time downlink data traffic of the cellular network.
69 // Obtain the real-time uplink data traffic of the cellular network.
74 // Obtain the real-time downlink data traffic of the all NICs.
79 // Obtain the real-time uplink data traffic of the all NICs.
84 // Obtain the real-time downlink data traffic of the specified application.
90 // Obtain the real-time uplink data traffic of the specified application.
96 // Obtain the real-time downlink data traffic of the specified socket.
106 // Obtain the real-time uplink data traffic of the specified socket.