Spent time diving into RxJava.
Insights:
-
Observable
pipelines feel clean and concise
- Great for streaming data and async workflows
- Debugging can be tricky — use .doOnNext
and Schedulers.trampoline()
in testsIt’s functional programming meets async.