Hello! Does Kotlin Flow has collectLatest function...
# coroutines
p
Hello! Does Kotlin Flow has collectLatest function but without cancelling current block?
b
simple
collect
? If you want to process only the last available value at a time, add
.conflate()
before
p
Conflate - exactly what I need. Thanks!