- Learning RxJava
- Thomas Nield
- 263字
- 2021-07-02 22:22:50
When to use RxJava
A common question ReactiveX newcomers ask is what circumstances warrant a reactive approach? Do we always want to use RxJava? As someone who has been living and breathing reactive programming for a while, I have learned that there are two answers to this question:
The first answer is when you first start out: yes! You always want to take a reactive approach. The only way to truly become a master of reactive programming is to build reactive applications from the ground up. Think of everything as Observable and always model your program in terms of data and event flows. When you do this, you will leverage everything reactive programming has to offer and see the quality of your applications go up significantly.
The second answer is that when you become experienced in RxJava, you will find cases where RxJava may not be appropriate. There will occasionally be times where a reactive approach may not be optimal, but usually, this exception applies to only part of your code. Your entire project itself should be reactive. There may be parts that are not reactive and for good reason. These exceptions only stand out to a trained Rx veteran who sees that returning List<String> is perhaps better than returning Observable<String>.
Rx greenhorns should not worry about when something should be reactive versus something not reactive. Over time, they will start to see cases where the benefits of Rx are marginalized, and this is something that only comes with experience.
So for now, no compromises. Go reactive all the way!
- Advanced Quantitative Finance with C++
- 數據庫系統原理及MySQL應用教程(第2版)
- Java程序設計與開發
- Objective-C Memory Management Essentials
- 移動UI設計(微課版)
- MATLAB應用與實驗教程
- Learning Linux Binary Analysis
- Mastering JavaScript High Performance
- Creating Stunning Dashboards with QlikView
- 動手學數據結構與算法
- Java圖像處理:基于OpenCV與JVM
- 平面設計經典案例教程:CorelDRAW X6
- Learning Nessus for Penetration Testing
- 網絡數據采集技術:Java網絡爬蟲實戰
- DevOps 精要:業務視角