XChange icon indicating copy to clipboard operation
XChange copied to clipboard

[Proposal] Convert StreamingMarketDataService functions from Observable to CompletableObservable

Open makarid opened this issue 2 years ago • 2 comments

Hello, because i think we need all the streaming public data to be a hot observable and never complete, is it ok to convert the functions from Observable<X> to CompletableObservable<X> ? Thanks

makarid avatar Jan 03 '23 08:01 makarid

The streaming api is well designed using rx Observables, you maybe talking about backpressure and that's available with a simple call in observable.toFlowable()

Have a look at this articles:

mrmx avatar Jan 05 '23 12:01 mrmx

I am using Flowable in my implementation and i think that many here are doing some kind of conversion from Observable to something else for production, that is why i am starting this thread. Maybe it is only me, but maybe there are others also. Thanks

makarid avatar Jan 09 '23 21:01 makarid