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
I'm using RxJava version 2.0.2 and wanted to implement a some logic using Flowable.generate.
Based on the documentation, if I emit more than one item in when calling onNext on the emitter instance, I should get an IllegalStateException, but in reality I experience a different behavior:
I'm using RxJava version 2.0.2 and wanted to implement a some logic using
Flowable.generate
.Based on the documentation, if I emit more than one item in when calling onNext on the emitter instance, I should get an
IllegalStateException
, but in reality I experience a different behavior:Taking this example:
I get this error:
io.reactivex.exceptions.MissingBackpressureException: Queue is full?!
and if I just try:
then it just pushes the values indefinitely.
The text was updated successfully, but these errors were encountered: