Composing Observable objects
Having seen different ways of creating various types of Observable
objects, subscribing to their events, and using the Subscription
objects, we turn to composing Observable
objects into larger programs. From what we have seen so far, the advantages of using Observable
objects over a callback-based API are hardly worth the trouble.
The true power of Rx becomes apparent when we start composing 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 with the Seq[T]
trait, elements of type T
are ordered in the memory according to their indices. In an Observable[T]
trait, events of type T
are ordered in ...
Get Learning Concurrent Programming in Scala now with O’Reilly online learning.
O’Reilly members experience live online training, plus books, videos, and digital content from 200+ publishers.