https://kotlinlang.org logo
Title
n

norman784

07/18/2017, 12:34 PM
I still doesn't understand why people choose to use RxJava (Kotlin in this case), I'm not here to start a flame war, b/c I really never used it but read some articles about it and didn't found it useful or easy to use
s

seriabov

07/18/2017, 12:52 PM
@norman784 Rx is really usefull when you have a data stream and need to tranform this data (moreover transform it in background)
i

ibfrog

07/18/2017, 2:10 PM
selfishly, it makes jumping between threads, synchronizing actions, and managing lifecycle dirt simple once you get past the rx syntax
d

damien5314

07/18/2017, 6:21 PM
you've probably set up an observable pattern in an app before, Rx just provides a standard API around that. it might not seem worth it for simple scenarios, but once your data flows become non-trivial, it really helps to think of your problem within the framework
n

nish

07/20/2017, 11:40 AM
It also makes async operations easier to orchestrate