Package org.apache.hc.core5.http
Interface HttpConnectionMetrics
-
- All Known Implementing Classes:
BasicEndpointDetails
,BasicHttpConnectionMetrics
,EndpointDetails
public interface HttpConnectionMetrics
The point of access to the statistics of anHttpConnection
.- Since:
- 4.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getReceivedBytesCount()
Gets the number of bytes transferred over the connection, 0 if not available.long
getRequestCount()
Gets the number of requests transferred over the connection, 0 if not available.long
getResponseCount()
Gets the number of responses transferred over the connection, 0 if not available.long
getSentBytesCount()
Gets the number of bytes transferred over the connection, 0 if not available.
-
-
-
Method Detail
-
getRequestCount
long getRequestCount()
Gets the number of requests transferred over the connection, 0 if not available.
-
getResponseCount
long getResponseCount()
Gets the number of responses transferred over the connection, 0 if not available.
-
getSentBytesCount
long getSentBytesCount()
Gets the number of bytes transferred over the connection, 0 if not available.
-
getReceivedBytesCount
long getReceivedBytesCount()
Gets the number of bytes transferred over the connection, 0 if not available.
-
-