I have a `DAO` (using `Room`) that returns `Flowab...
# rx
u
I have a
DAO
(using
Room
) that returns
Flowable<List<SomeType>>
, but all of my API methods expose
Observable
. Is there a straight way to convert a
Flowable
into an
Observable
? Thanks.