Composing Observable objects

Having seen different ways of creating various types of the Observable objects, subscribing to their events, and using the Subscription objects, we turn our attention to composing the Observable objects into larger programs. From what we have seen so far, the advantages of using the Observable objects over a callback-based API are hardly worth the trouble.

The true power of Rx becomes apparent when we start composing the Observable objects using various combinators. We can think of an Observable object in a similar way as we think of Scala sequence collections. In a Scala sequence, represented by the Seq[T] trait, elements of type T are ordered in the memory according to their indices. In an Observable[T] trait, events ...

Get Learning Concurrent Programming in Scala - Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.