https://kotlinlang.org logo
Title
e

Eugene Freeman

08/19/2020, 7:09 AM
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

Fabio

08/19/2020, 7:17 AM
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

Dennis Schröder

08/19/2020, 7:18 AM
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

Fabio

08/19/2020, 7:20 AM
yep, they're good but I find most of them hard to apply to android.
m

Milan Hruban

08/19/2020, 7:35 AM
f

Fabio

08/19/2020, 8:28 AM
this is good ☝️
e

Eugene Freeman

08/19/2020, 8:52 AM
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