<@U0ZFBBUBU> Futures are also imply concurrency. T...
# coroutines
e
@groostav Futures are also imply concurrency. That's why I'd recommend adding
Async
to anything that returns a future, too. Concurrent things are quite error-prone (even when dispatched onto the same thread), so whenever you run a new async computation in parallel with the rest of your code you should be explicit about it.
👍 1