How do I write `Observable.just` with channels?
# coroutines
i
How do I write
Observable.just
with channels?
w
You probably want to use
Flow
and not channels directly, then
flowOf
And for
Observable#create
->
flow { }
i
Ah right,
Flow
is what I'm actually using. Didn't know
flowOf
, thanks!
👍 1
(just resumed an old project and forgot that I'm not using channels :D)