Marc
02/10/2023, 12:27 PMArkadii Ivanov
02/10/2023, 12:48 PMDmitry Motyl
02/10/2023, 12:49 PMMarc
02/10/2023, 12:50 PMArkadii Ivanov
02/10/2023, 12:50 PMbut flows do have all transforms and stuff, so it is reactive, no?Flow does, but a direct equivalent for Single would be
typealias Single<T> = suspend () -> T
. Completable would be typealias Completable = suspend () -> Unit
Obviously nobody would use coroutines this way :-)observeOn
or subscribeOn
.Marc
02/10/2023, 12:57 PM