I have a download progress listener and want to co...
# coroutines
s
I have a download progress listener and want to conflate the results so only the latest progress is persisted to the db. I only have a callback
override fun onProgress(Int)
. Can I use a Flow for this?
r
StateFlow probably