I have a Flow that produces a stream of values. I want to take that stream and launch a coroutine for each emitted function inside Dispatchers.IO (or something like that).
I believe I don't want
.flowOn(<http://Dispatchers.IO|Dispatchers.IO>)
for this — that's the opposite of what I want as it affects where the emission happens. Do I just want to do launch with context inside collect?