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
The marble diagram for the Observable.amb operator is as follows:
This means that the second (looser) Observable stays active (subscribed) while the whole amb executes. But in fact all Observables except the first (winner) are being cancelled (disposed).
Version: 3.0.4
The marble diagram for the

Observable.amb
operator is as follows:This means that the second (looser)
Observable
stays active (subscribed) while the wholeamb
executes. But in fact allObservables
except the first (winner) are being cancelled (disposed).Please consider the following code snippet:
This code produces the following output:
Also it would be nice to describe this behavior explicitly in Java docs.
The text was updated successfully, but these errors were encountered: