I've got three functions that I want to call async...
# announcements
t
I've got three functions that I want to call asynchronously, do I have to make them suspended or can I just run three async blocks?
d
suspend functions are not automatically asynchronous. Concurrency is explicit in kotlin. You can use
GlobalScope.launch
, although I would recommend adding your application lifecycle to the coroutine context.
Scrap that, I mean component lifecycle