Hot and cold Observable instances

Looking at the previous examples implemented using the Observable.create(), Observable.just(), and Observable.from() methods, we can say that until someone subscribes to them, they are inactive and don't emit anything. However, each time someone subscribes, they start emitting their notifications. For example, if we subscribe three times to an Observable.from(Iterable) object, the Iterable instance will be iterated three times. The Observable instances behaving like that are called cold Observable instances.

All of the factory methods we've been using in this chapter return cold Observables. Cold Observables produce notifications on demand, and for every Subscriber, they produce independent notifications.

There ...

Get Learning Reactive Programming with Java 8 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.