.toObservable()
# rx
j
.toObservable()
k
do you lose the backpressure on the entire stream or flowable capable of handling this until the
toObservable()
call?
j
Yes. You're telling it to move to a backpressure free world so it requests all values as fast as they can be produced
👍 1