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 an
HttpConnection
.- Since:
- 4.0
-
Method Summary
Modifier and TypeMethodDescriptionlong
Gets the number of bytes transferred over the connection, 0 if not available.long
Gets the number of requests transferred over the connection, 0 if not available.long
Gets the number of responses transferred over the connection, 0 if not available.long
Gets the number of bytes transferred over the connection, 0 if not available.
-
Method Details
-
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.
-