kzotin
01/02/2020, 6:38 PMFlow
in MPP/KN modules? Got any tips & tricks?
I'm trying to expose shared repository layer for iOS/Android, and considering which Observable
implementation to expose. Would really like to avoid Reaktive
, having already coroutines and RxJava in the project...
Thanks in advance!Arkadii Ivanov
01/02/2020, 7:57 PMKurt Renzo Acosta
01/03/2020, 12:42 AMCFlow
which exposes a watch function that you can use on Swift.
On your Flow
, you can use wrap()
to transform it to a CFlow
then to consume it you use Flow.watch { ... }
kzotin
01/08/2020, 9:23 AM