https://kotlinlang.org logo
#feed
Title
# feed
d

Dan Newton

04/27/2020, 8:25 AM
Continuing my intro series to coroutines - https://lankydan.dev/waiting-for-coroutines
👍 2
b

bdawg.io

04/27/2020, 3:46 PM
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

Dan Newton

04/27/2020, 3:58 PM
👍 ye it is a bit funky. Struggled to decide whether to keep calling coroutines jobs throughout the post