The 3 Os
Explore the three essential RxJava constructs Observable Observer and Operator that model reactive streams. Learn how Observables emit items Observers subscribe to them and Operators transform data in the stream to grasp RxJava's core functionality.
We'll cover the following...
We'll cover the following...
RxJava main constructs
The concept of a stream is modeled in RxJava using three main constructs, which we will refer to as the “3 Os”. These are the Observable, Observer, and ...