Am I the only one who thinks coroutines are kind o...
# coroutines
p
Am I the only one who thinks coroutines are kind of ... complicated?
m
I think everything related to threading / concurrency is complicated, you have to spend a lot of time trying to get the full picture until you understand why things are built they way they are.
coroutines are the same, no difference from java threading. You can ignore most of it and use the most basic functionality, but writing good concurrent code is simply hard.
d
yes. you are the only one 🙂 coroutines are extremelly easy to use (compared to traditional frameworks and even rxjava), especially with great
kotlinx.coroutines
lib. and btw, documentation is awesome