February 2018
Intermediate to advanced
350 pages
7h 35m
English
As we discussed earlier, in reactive programming, Observable has an underlying computation that produces values that can be consumed by a consumer (Observer). The most important thing here is that the consumer (Observer) doesn't pull values here; rather, Observable pushes the values to the consumer. So, we can say that an Observable interface is a push-based, composable Iterator that emits its items through a series of operators to the final Observer, which finally consumes the items. Let's now break these things down sequentially to understand it better:
So, let's delve into how Observable ...
Read now
Unlock full access