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
an issue with how the cleanup function is defined in the SubscriberFunction is that the SubscriberFunction must return the function. This is problematic if the SubscriberFunction blocks the execution for too long until it receives the cleanup function.
In RxJava, we can solve this by replacing the internal cancellable/disposable state of the Emitter (SubscriptionObserver) by calling setDisposable(Disposable) or setCancellable(Cancellable).
The text was updated successfully, but these errors were encountered:
an issue with how the cleanup function is defined in the SubscriberFunction is that the SubscriberFunction must return the function. This is problematic if the SubscriberFunction blocks the execution for too long until it receives the cleanup function.
In RxJava, we can solve this by replacing the internal cancellable/disposable state of the Emitter (SubscriptionObserver) by calling
setDisposable(Disposable)
orsetCancellable(Cancellable)
.The text was updated successfully, but these errors were encountered: