Package org.apache.hc.core5.http
Interface HttpConnectionMetrics
-
- All Known Implementing Classes:
BasicEndpointDetails,BasicHttpConnectionMetrics,EndpointDetails
public interface HttpConnectionMetricsThe point of access to the statistics of anHttpConnection.- Since:
- 4.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetReceivedBytesCount()Gets the number of bytes transferred over the connection, 0 if not available.longgetRequestCount()Gets the number of requests transferred over the connection, 0 if not available.longgetResponseCount()Gets the number of responses transferred over the connection, 0 if not available.longgetSentBytesCount()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.
-
-