Hey what is the equivalent of RxJava `Completable`...
# android
l
Hey what is the equivalent of RxJava
Completable
when switching over to Kotlin Coroutines ?
looks like you can do something like this https://stackoverflow.com/a/59134870/502671
p
Just a
suspend fun
. Like in the StackOverflow example. Or a
flow
that emits once and completes.
💯 1