Hi, everyone! i read an information about Coroutin...
# coroutines
d
Hi, everyone! i read an information about Coroutine from here. In the important box, it says "Kotlin coroutines might move execution to another thread after a
suspend
-and-
resume
."
But I'm having trouble understanding this concept. How i can test it? can you give me any test codes or references?
y
This must be pretty typical on the default dispatcher. When you suspend, another thread in the pool might pick up your resumption
d
@yschimke Thank you. I'll check it!