Rx Pattern and Observable
Learn how to combine the Observer and Iterator Patterns to be used as the Rx Pattern.
We'll cover the following...
While the Observer and the Iterator patterns are powerful in their own right, the combination of both is even better. We call this the Rx pattern, named after the Reactive Extensions libraries. We’ll use this pattern for the rest of the course.
The Observable sequence, or simply Observable, is central to the Rx pattern. An Observable emits its values in order—like an iterator—but instead of its consumers ...