Is there an equivalent for `Observable.compose()` ...
# flow
m
Is there an equivalent for
Observable.compose()
in Kotlin Flow, so we don’t break the chain, the idea is to offer only callbacks to consumer code, and internally I’m using
Stateflow
and
SharedFlow
. in Rxjava I was using
Observable.compose()
with Rx transformers.
b
With Kotlin, it is basically using the
.let { }
extension function on a
Flow
, and returning the new
Flow
. Compose was just a way to achieve it in Java.
👍 1