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
Right now an onError to observeOn does not unsubscribe. This is normal behavior for most operators, but in this case can mean the source keeps spinning if the error did not come from the source (such as MissingBackpressureException) until the error propagates across the thread boundary and triggers an unsubscribe.
Across async boundaries I think the unsubscribe should be eager to stop the source faster.
Right now an
onError
toobserveOn
does notunsubscribe
. This is normal behavior for most operators, but in this case can mean the source keeps spinning if the error did not come from the source (such asMissingBackpressureException
) until the error propagates across the thread boundary and triggers an unsubscribe.Across async boundaries I think the unsubscribe should be eager to stop the source faster.
This is related to #1680
The text was updated successfully, but these errors were encountered: