Bridging the Non-reactive and Reactive Worlds
Explore how to convert traditional pull-based Android code to the reactive push model using RxJava. Learn to apply key operators such as filter and sorted on Observables, enabling incremental integration of reactive principles into your app development.
We'll cover the following...
We'll cover the following...
Pull-based to push-based paradigm
One of the challenges of adding RxJava as one of the libraries to projects is that it fundamentally changes the way that we reason about our code.
RxJava requires us to think about data as being pushed rather than being pulled. We covered this topic in our earlier lesson, Push vs. Pull.(https://www.educative.io/collection/pa ...