Hi guys What article about kotlin coroutines you w...
# getting-started
e
Hi guys What article about kotlin coroutines you would recommend must read? I am trying to wrap my head around of how coroutines works in nutshell. Thanks in advance
f
I'd suggest something to read related to what you usually do, to help you translate your solutions into new patterns. Coroutines probably solve lots of problems you don't have, so it would be harder to grasp the advantages there. What kind of projects you tend to do the most?
d
There are several articles in Medium from @elizarov that I found pretty useful to get into coroutines. https://medium.com/@elizarov Besides that, check out the KotlinConf Youtube Vids. Coroutines were a big topic on there two.
f
yep, they're good but I find most of them hard to apply to android.
m
f
this is good ☝️
e
I getting into coroutines just for myself. Currently I study telegram bot API library and found this limiter implementation and get stacked, because I cannot understand how I need to configure it to guarantee that only 1 request in 2 seconds will be executed
I decided to get deeply into courotines