is there a function to iterate over Flux in a coro...
# coroutines
d
is there a function to iterate over Flux in a coroutine context? Something like this:
Copy code
someFlux.forEach {
   val result = callAnotherSuspendingFunction(it)
   doSomethingElse(result)
}
this forEach is suspended itself