Mohamed Ibrahim
04/11/2022, 8:07 PMObservable.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.baxter
04/12/2022, 6:37 AM.let { }
extension function on a Flow
, and returning the new Flow
. Compose was just a way to achieve it in Java.