Does anybody know about any article or such where ...
# coroutines
g
Does anybody know about any article or such where I can read a bit more about the internals of kotlin? With internals I mean like... on a byte-code/language level. If I know about suspension points -> the continuation interface with resume etcetera -> The compiled java code which adds an object to the signature then where do I go next? If I have 1000 suspended coroutines (continuations), how is the scheduling for the "wake up" mechanism done on these?
b
This talk explains how coroutines work internally

https://youtu.be/YrrUCSi72E8

g
@bezrukov thanks! I was kinda thinking if there's more to know from the internals of the coroutine library (even deeper) but I think it was 2 years since I saw that talk so I should probably watch it again, might pick up more this time 😊