For a person who is just starting on reactive programming, could you drop in the replies on what you think are good resources to learn RxJava and RxKotlin?
g
georg
07/15/2020, 7:48 PM
Well, I’d suggest you skip Rx and take a look straightaway into coroutine’s Flow. It’s gonna supersede RxKotlin eventually. The concepts are the same but it’s better supported by the language and the compiler.
Otherwise read the official Rx docs and check out Rx Marbles
☝️ 3
s
stephanmg
07/16/2020, 10:03 AM
@georg but coroutine’s Flow is still reactive paradigm?
a
Apex
07/16/2020, 6:50 PM
@georg yeah flow will eventually supersede rxjava but a huge number of companies do use it currently and being proficient in it is a requirement in a lot of interviews
p
paulex
07/22/2020, 11:30 AM
@Apex being proficient in what exactly? RxJava or Flows?