I was more thinking if there was any extra weight ...
# coroutines
r
I was more thinking if there was any extra weight to the Job object, if there was a lighter version of the same thing, which just schedules but does not allow for any control of the outcome
k
I think the Job is pretty lightweight for your need. However, if you need to go really low level, then you should lookup the
suspendCoroutine
function
o
and then go really deep into
suspendCoroutineOrReturn
🙂
âž• 1