added in version 22.1.0
belongs to Maven artifact com.android.support:support-compat:28.0.0-alpha1

TrafficStatsCompat

public final class TrafficStatsCompat
extends Object

java.lang.Object
   ↳ android.support.v4.net.TrafficStatsCompat


Helper for accessing features in TrafficStats.

Summary

Public methods

static void clearThreadStatsTag()

This method was deprecated in API level 26.1.0. Use clearThreadStatsTag() directly.

static int getThreadStatsTag()

This method was deprecated in API level 26.1.0. Use getThreadStatsTag() directly.

static void incrementOperationCount(int operationCount)

This method was deprecated in API level 26.1.0. Use incrementOperationCount(int) directly.

static void incrementOperationCount(int tag, int operationCount)

This method was deprecated in API level 26.1.0. Use incrementOperationCount(int, int) directly.

static void setThreadStatsTag(int tag)

This method was deprecated in API level 26.1.0. Use setThreadStatsTag(int) directly.

static void tagDatagramSocket(DatagramSocket socket)

Tag the given DatagramSocket with any statistics parameters active for the current thread.

static void tagSocket(Socket socket)

This method was deprecated in API level 26.1.0. Use tagSocket(Socket) directly.

static void untagDatagramSocket(DatagramSocket socket)

Remove any statistics parameters from the given DatagramSocket.

static void untagSocket(Socket socket)

This method was deprecated in API level 26.1.0. Use untagSocket(Socket) directly.

Inherited methods

From class java.lang.Object

Public methods

clearThreadStatsTag

added in version 22.1.0
void clearThreadStatsTag ()

This method was deprecated in API level 26.1.0.
Use clearThreadStatsTag() directly.

Clear active tag used when accounting Socket traffic originating from the current thread.

getThreadStatsTag

added in version 22.1.0
int getThreadStatsTag ()

This method was deprecated in API level 26.1.0.
Use getThreadStatsTag() directly.

Get the active tag used when accounting Socket traffic originating from the current thread. Only one active tag per thread is supported. tagSocket(Socket).

Returns
int

incrementOperationCount

added in version 22.1.0
void incrementOperationCount (int operationCount)

This method was deprecated in API level 26.1.0.
Use incrementOperationCount(int) directly.

Increment count of network operations performed under the accounting tag currently active on the calling thread. This can be used to derive bytes-per-operation.

Parameters
operationCount int: Number of operations to increment count by.

incrementOperationCount

added in version 22.1.0
void incrementOperationCount (int tag, 
                int operationCount)

This method was deprecated in API level 26.1.0.
Use incrementOperationCount(int, int) directly.

Increment count of network operations performed under the given accounting tag. This can be used to derive bytes-per-operation.

Parameters
tag int: Accounting tag used in setThreadStatsTag(int).

operationCount int: Number of operations to increment count by.

setThreadStatsTag

added in version 22.1.0
void setThreadStatsTag (int tag)

This method was deprecated in API level 26.1.0.
Use setThreadStatsTag(int) directly.

Set active tag to use when accounting Socket traffic originating from the current thread. Only one active tag per thread is supported.

Changes only take effect during subsequent calls to tagSocket(Socket).

Tags between 0xFFFFFF00 and 0xFFFFFFFF are reserved and used internally by system services like DownloadManager when performing traffic on behalf of an application.

Parameters
tag int

tagDatagramSocket

added in version 24.1.0
void tagDatagramSocket (DatagramSocket socket)

Tag the given DatagramSocket with any statistics parameters active for the current thread. Subsequent calls always replace any existing parameters. When finished, call untagDatagramSocket(DatagramSocket) to remove statistics parameters.

Parameters
socket DatagramSocket

Throws
SocketException

tagSocket

added in version 22.1.0
void tagSocket (Socket socket)

This method was deprecated in API level 26.1.0.
Use tagSocket(Socket) directly.

Tag the given Socket with any statistics parameters active for the current thread. Subsequent calls always replace any existing parameters. When finished, call untagSocket(Socket) to remove statistics parameters.

Parameters
socket Socket

Throws
SocketException

untagDatagramSocket

added in version 24.1.0
void untagDatagramSocket (DatagramSocket socket)

Remove any statistics parameters from the given DatagramSocket.

Parameters
socket DatagramSocket

Throws
SocketException

untagSocket

added in version 22.1.0
void untagSocket (Socket socket)

This method was deprecated in API level 26.1.0.
Use untagSocket(Socket) directly.

Remove any statistics parameters from the given Socket.

Parameters
socket Socket

Throws
SocketException