Package com.telnyx.webrtc.lib
Class NetworkMonitor
java.lang.Object
com.telnyx.webrtc.lib.NetworkMonitor
Borrowed from Chromium's
src/net/android/java/src/org/chromium/net/NetworkChangeNotifier.java
Triggers updates to the underlying network state from OS networking events.
This class is thread-safe.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interface
Alerted when the connection type of the network changes. -
Method Summary
Modifier and TypeMethodDescriptionstatic void
Deprecated.Use getInstance(appContext).addObserver instead.void
addObserver
(NetworkMonitor.NetworkObserver observer) static NetworkMonitor
Returns the singleton instance.int
static void
Deprecated.static boolean
isOnline()
Checks if there currently is connectivity.static void
Deprecated.Use getInstance(appContext).removeObserver instead.void
removeObserver
(NetworkMonitor.NetworkObserver observer) void
Set the factory that will be used to create the network change detector.void
Deprecated.void
startMonitoring
(Context applicationContext) Deprecated.void
startMonitoring
(Context applicationContext, String fieldTrialsString) Enables auto detection of the network state change and brings up mobile networks for using multi-networking.void
Stop network monitoring.
-
Method Details
-
setNetworkChangeDetectorFactory
Set the factory that will be used to create the network change detector. Needs to be called before the monitoring is starts. -
init
Deprecated. -
getInstance
Returns the singleton instance. This may be called from native or from Java code. -
startMonitoring
Enables auto detection of the network state change and brings up mobile networks for using multi-networking. This requires the embedding app have the platform ACCESS_NETWORK_STATE and CHANGE_NETWORK_STATE permission. -
startMonitoring
Deprecated.Deprecated, use startMonitoring with fieldTrialsStringString argument. -
startMonitoring
Deprecated.Deprecated, pass in application context in startMonitoring instead. -
stopMonitoring
public void stopMonitoring()Stop network monitoring. If no one is monitoring networks, destroy and reset networkChangeDetector. -
addNetworkObserver
Deprecated.Use getInstance(appContext).addObserver instead.Adds an observer for any connection type changes. -
addObserver
-
removeNetworkObserver
Deprecated.Use getInstance(appContext).removeObserver instead.Removes an observer for any connection type changes. -
removeObserver
-
isOnline
public static boolean isOnline()Checks if there currently is connectivity. -
getNumObservers
public int getNumObservers()
-