Is it an oversight that there’s no way to convert ...
# coroutines
a
Is it an oversight that there’s no way to convert
Observable -> Flow
in the Flow RX extensions? You can do
Observable -> Flowable -> Flow
but it would be nice to be able to do convert it directly
p
It's because they are different concepts. Observable doesn't support back pressure.
a
Well it could easily include the same back pressure strategy parameter as Observable to Flowable. I find it rare to use Flowable on Android
s
We mostly use Flowable… no that rare 🙂
a
There are few places where I think it makes sense to use Flowable on Android. Not that many cold observables besides network requests where you usually have a Single anyway
v
We’ve decided that it is not that useful initially. Could you please create an issue for that?
👍 1