https://kotlinlang.org logo
#coroutines
Title
# coroutines
k

kevin.cianfarini

12/04/2018, 6:40 PM
does anyone know of any good talks that follows the lifecycle of a coroutine down to a kernal blocking call?
e

elizarov

12/04/2018, 9:03 PM
Life of a coroutines has little to do with kernel blocking calls. Coroutines are just convenient way to write async code — without callbacks and futures. How and where it exactly blocks (if it even block) depends on the async library you are using, and has no direct relations to the coroutines themselves.
3 Views