hey guys either i don’t find the right documentati...
# coroutines
n
hey guys either i don’t find the right documentation, or i’m stupid in both cases, i need your support my use-case is the most boring one: i want to fire off X http requests to web services in a non-blocking parallel way i’ve wrapped those calls into a neat
SearchProvider
class and i have a list of them firing them in an
async
block is easy but how do i get the results?
Copy code
providers
    .map {
        async(CommonPool) {
            it.search()
    }
}