You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Basically, android.net.ConnectivityManager.NetworkCallback is invoked on android.net.ConnectivityThread by default and android.content.BroadcastReceiver#onReceive from idle mode is invoked on the main thread.
From RxJava doc:
Calling onNext(Object), onError(Throwable) and onComplete() is required to be serialized (called from the same thread or called non-overlappingly from different threads through external means of serialization). The toSerialized() method available to all Subjects provides such serialization and also protects against reentrance (i.e., when a downstream Observer consuming this subject also wants to call onNext(Object) on this subject recursively).
The text was updated successfully, but these errors were encountered:
Basically,
android.net.ConnectivityManager.NetworkCallback
is invoked onandroid.net.ConnectivityThread
by default andandroid.content.BroadcastReceiver#onReceive
from idle mode is invoked on the main thread.From RxJava doc:
The text was updated successfully, but these errors were encountered: