RxJava Observables are closest in behavior to SequenceM streams (from cyclops-streams and included in simple-react). Although LazyFutureStream and Observable share many operators in a very rich api, ...
In RxJava, the dedicated Flowable class is designated to support backpressure and Observable is dedicated to the non-backpressured operations (short sequences, GUI interactions, etc.). The other types ...