I know one solution is to use `startWith` on the s...
# coroutines
a
I know one solution is to use
startWith
on the stream before calling
openSubscription()
but I will be forced to move the time consuming operation above also, to generate stream of
Result
instead of Stream of
Event
and I am trying to make coroutines handle the logic instead (I am trying to replace complex RxJava chains with coroutines)