Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public interface

HttpConnectionMetrics

org.apache.http.HttpConnectionMetrics
Known Indirect Subclasses

Class Overview

The point of access to the statistics of an HttpConnection .

Summary

Public Methods
abstract Object getMetric ( String metricName)
Return the value for the specified metric.
abstract long getReceivedBytesCount ()
Returns the number of bytes transferred over the connection, 0 if not available.
abstract long getRequestCount ()
Returns the number of requests transferred over the connection, 0 if not available.
abstract long getResponseCount ()
Returns the number of responses transferred over the connection, 0 if not available.
abstract long getSentBytesCount ()
Returns the number of bytes transferred over the connection, 0 if not available.
abstract void reset ()
Resets the counts

Public Methods

public abstract Object getMetric ( String metricName)

Added in API level 1

Return the value for the specified metric.

Parameters
metricName the name of the metric to query.
Returns
  • the object representing the metric requested, null if the metric cannot not found.

public abstract long getReceivedBytesCount ()

Added in API level 1

Returns the number of bytes transferred over the connection, 0 if not available.

public abstract long getRequestCount ()

Added in API level 1

Returns the number of requests transferred over the connection, 0 if not available.

public abstract long getResponseCount ()

Added in API level 1

Returns the number of responses transferred over the connection, 0 if not available.

public abstract long getSentBytesCount ()

Added in API level 1

Returns the number of bytes transferred over the connection, 0 if not available.

public abstract void reset ()

Added in API level 1

Resets the counts