TetheringManager
open class TetheringManager
| kotlin.Any | |
| ↳ | android.net.TetheringManager |
This class provides the APIs to control the tethering service.
The primary responsibilities of this class are to provide the APIs for applications to start tethering, stop tethering, query configuration and query status.
Summary
| Nested classes | |
|---|---|
| abstract |
Callback for use with |
| abstract |
Callback for use with |
| abstract |
Callback for use with registerTetheringEventCallback to find out tethering upstream status. |
|
Use with |
|
| Constants | |
|---|---|
| static Int |
Indicates that this tethering connection will provide connectivity beyond this device (e.g., global Internet access). |
| static Int |
Wifi tethering type. |
| static Int | |
| static Int | |
| static Int | |
| static Int | |
| static Int | |
| static Int | |
| static Int | |
| static Int | |
| static Int | |
| static Int | |
| static Int | |
| static Int | |
| static Int | |
| static Int | |
| static Int | |
| static Int | |
| static Int | |
| static Int | |
| static Int | |
| Public methods | |
|---|---|
| open Unit |
registerTetheringEventCallback(executor: Executor, callback: TetheringManager.TetheringEventCallback)Start listening to tethering change events. |
| open Unit |
startTethering(request: TetheringManager.TetheringRequest, executor: Executor, callback: TetheringManager.StartTetheringCallback)Starts tethering and runs tether provisioning for the given type if needed. |
| open Unit |
stopTethering(request: TetheringManager.TetheringRequest, executor: Executor, callback: TetheringManager.StopTetheringCallback)Stops tethering for the given request. |
| open Unit |
Remove tethering event callback previously registered with |
| Protected methods | |
|---|---|
| open Unit |
finalize()Called by the garbage collector on an object when garbage collection determines that there are no more references to the object. |
Constants
CONNECTIVITY_SCOPE_GLOBAL
static val CONNECTIVITY_SCOPE_GLOBAL: Int
Indicates that this tethering connection will provide connectivity beyond this device (e.g., global Internet access).
Value: 1TETHERING_WIFI
static val TETHERING_WIFI: Int
Wifi tethering type.
Value: 0See Also
TETHER_ERROR_DHCPSERVER_ERROR
static val TETHER_ERROR_DHCPSERVER_ERROR: Int
Value: 12TETHER_ERROR_DISABLE_FORWARDING_ERROR
static val TETHER_ERROR_DISABLE_FORWARDING_ERROR: Int
Value: 9TETHER_ERROR_DUPLICATE_REQUEST
static val TETHER_ERROR_DUPLICATE_REQUEST: Int
Value: 18TETHER_ERROR_ENABLE_FORWARDING_ERROR
static val TETHER_ERROR_ENABLE_FORWARDING_ERROR: Int
Value: 8TETHER_ERROR_ENTITLEMENT_UNKNOWN
static val TETHER_ERROR_ENTITLEMENT_UNKNOWN: Int
Value: 13TETHER_ERROR_IFACE_CFG_ERROR
static val TETHER_ERROR_IFACE_CFG_ERROR: Int
Value: 10TETHER_ERROR_INTERNAL_ERROR
static val TETHER_ERROR_INTERNAL_ERROR: Int
Value: 5TETHER_ERROR_NO_ACCESS_TETHERING_PERMISSION
static val TETHER_ERROR_NO_ACCESS_TETHERING_PERMISSION: Int
Value: 15TETHER_ERROR_NO_CHANGE_TETHERING_PERMISSION
static val TETHER_ERROR_NO_CHANGE_TETHERING_PERMISSION: Int
Value: 14TETHER_ERROR_PROVISIONING_FAILED
static val TETHER_ERROR_PROVISIONING_FAILED: Int
Value: 11TETHER_ERROR_SERVICE_UNAVAIL
static val TETHER_ERROR_SERVICE_UNAVAIL: Int
Value: 2TETHER_ERROR_TETHER_IFACE_ERROR
static val TETHER_ERROR_TETHER_IFACE_ERROR: Int
Value: 6TETHER_ERROR_UNAVAIL_IFACE
static val TETHER_ERROR_UNAVAIL_IFACE: Int
Value: 4TETHER_ERROR_UNKNOWN_IFACE
static val TETHER_ERROR_UNKNOWN_IFACE: Int
Value: 1TETHER_ERROR_UNKNOWN_REQUEST
static val TETHER_ERROR_UNKNOWN_REQUEST: Int
Value: 17TETHER_ERROR_UNTETHER_IFACE_ERROR
static val TETHER_ERROR_UNTETHER_IFACE_ERROR: Int
Value: 7Public methods
registerTetheringEventCallback
open fun registerTetheringEventCallback(
executor: Executor,
callback: TetheringManager.TetheringEventCallback
): Unit
Start listening to tethering change events. Any new added callback will receive the last tethering status right away. If callback is registered, android.net.TetheringManager.TetheringEventCallback#onUpstreamChanged will immediately be called. If tethering has no upstream or disabled, the argument of callback will be null. The same callback object cannot be registered twice.
Requires android.Manifest.permission#ACCESS_NETWORK_STATE
| Parameters | |
|---|---|
executor |
Executor: the executor on which callback will be invoked. This value cannot be null. |
callback |
TetheringManager.TetheringEventCallback: the callback to be called when tethering has change events. This value cannot be null. |
startTethering
open fun startTethering(
request: TetheringManager.TetheringRequest,
executor: Executor,
callback: TetheringManager.StartTetheringCallback
): Unit
Starts tethering and runs tether provisioning for the given type if needed. If provisioning fails, stopTethering will be called automatically.
| Parameters | |
|---|---|
request |
TetheringManager.TetheringRequest: a TetheringRequest which can specify the preferred configuration. This value cannot be null. |
executor |
Executor: Executor to specify the thread upon which the callback of TetheringRequest will be invoked. This value cannot be null. |
callback |
TetheringManager.StartTetheringCallback: A callback that will be called to indicate the success status of the tethering start request. This value cannot be null. |
stopTethering
open fun stopTethering(
request: TetheringManager.TetheringRequest,
executor: Executor,
callback: TetheringManager.StopTetheringCallback
): Unit
Stops tethering for the given request. Operation will fail with TETHER_ERROR_UNKNOWN_REQUEST if there is no request that matches it.
| Parameters | |
|---|---|
request |
TetheringManager.TetheringRequest: This value cannot be null. |
executor |
Executor: This value cannot be null. |
callback |
TetheringManager.StopTetheringCallback: This value cannot be null. |
unregisterTetheringEventCallback
open fun unregisterTetheringEventCallback(callback: TetheringManager.TetheringEventCallback): Unit
Remove tethering event callback previously registered with registerTetheringEventCallback.
Requires android.Manifest.permission#TETHER_PRIVILEGED or android.Manifest.permission#ACCESS_NETWORK_STATE
| Parameters | |
|---|---|
callback |
TetheringManager.TetheringEventCallback: previously registered callback. This value cannot be null. |
Protected methods
finalize
protected open fun finalize(): Unit
Called by the garbage collector on an object when garbage collection determines that there are no more references to the object. A subclass overrides the finalize method to dispose of system resources or to perform other cleanup.
The general contract of finalize is that it is invoked if and when the Java virtual machine has determined that there is no longer any means by which this object can be accessed by any thread that has not yet died, except as a result of an action taken by the finalization of some other object or class which is ready to be finalized. The finalize method may take any action, including making this object available again to other threads; the usual purpose of finalize, however, is to perform cleanup actions before the object is irrevocably discarded. For example, the finalize method for an object that represents an input/output connection might perform explicit I/O transactions to break the connection before the object is permanently discarded.
The finalize method of class Object performs no special action; it simply returns normally. Subclasses of Object may override this definition.
The Java programming language does not guarantee which thread will invoke the finalize method for any given object. It is guaranteed, however, that the thread that invokes finalize will not be holding any user-visible synchronization locks when finalize is invoked. If an uncaught exception is thrown by the finalize method, the exception is ignored and finalization of that object terminates.
After the finalize method has been invoked for an object, no further action is taken until the Java virtual machine has again determined that there is no longer any means by which this object can be accessed by any thread that has not yet died, including possible actions by other objects or classes which are ready to be finalized, at which point the object may be discarded.
The finalize method is never invoked more than once by a Java virtual machine for any given object.
Any exception thrown by the finalize method causes the finalization of this object to be halted, but is otherwise ignored.
| Exceptions | |
|---|---|
java.lang.Throwable |
the Exception raised by this method |