Even when you do stuff in parallel, does not mean ...
# coroutines
e
Even when you do stuff in parallel, does not mean you need futures. For example. Your network service needs to handle each incoming request in parallel with all other. Do you need future for that? Absolutely no. You just launch a separate coroutine for each request that handles it and respond. You don't need a future for that!