Class NetworkMonitor

java.lang.Object
com.telnyx.webrtc.lib.NetworkMonitor

public class NetworkMonitor extends Object
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.

  • Method Details

    • setNetworkChangeDetectorFactory

      public void setNetworkChangeDetectorFactory(NetworkChangeDetectorFactory factory)
      Set the factory that will be used to create the network change detector. Needs to be called before the monitoring is starts.
    • init

      @Deprecated public static void init(Context context)
      Deprecated.
    • getInstance

      public static NetworkMonitor getInstance()
      Returns the singleton instance. This may be called from native or from Java code.
    • startMonitoring

      public void startMonitoring(Context applicationContext, String fieldTrialsString)
      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 public void startMonitoring(Context applicationContext)
      Deprecated.
      Deprecated, use startMonitoring with fieldTrialsStringString argument.
    • startMonitoring

      @Deprecated public void 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 public static void addNetworkObserver(NetworkMonitor.NetworkObserver observer)
      Deprecated.
      Use getInstance(appContext).addObserver instead.
      Adds an observer for any connection type changes.
    • addObserver

      public void addObserver(NetworkMonitor.NetworkObserver observer)
    • removeNetworkObserver

      @Deprecated public static void removeNetworkObserver(NetworkMonitor.NetworkObserver observer)
      Deprecated.
      Use getInstance(appContext).removeObserver instead.
      Removes an observer for any connection type changes.
    • removeObserver

      public void removeObserver(NetworkMonitor.NetworkObserver observer)
    • isOnline

      public static boolean isOnline()
      Checks if there currently is connectivity.
    • getNumObservers

      public int getNumObservers()