Continuing my intro series to coroutines - <https:...
# feed
d
Continuing my intro series to coroutines - https://lankydan.dev/waiting-for-coroutines
👍 2
b
AFAIK, all coroutines are jobs, but not all jobs are coroutines. For example,
Copy code
val job = Job()
doesn't spin off a new coroutine. That's just a basic life cycle job.
d
👍 ye it is a bit funky. Struggled to decide whether to keep calling coroutines jobs throughout the post