`async` is only for parallelization. I avoid recom...
# coroutines
l
async
is only for parallelization. I avoid recommending it unless you need it because I saw a lot of misuse regarding it that broke structured concurrency and throwables handling.
z
async can also be used for asynchronous lazy initialization (instead of synchronous
by lazy
) with the
async(start = CoroutinesStart.LAZY)
👍 1
l
That's right!