An Observable that provides blocking operators.
A ConnectableObservable resembles an ordinary Observable, except that it does not begin emitting items when it is subscribed to, but only when its connect method is called.
EXPERIMENTAL An Observable that provides operators which delay errors when composing multiple Observables.
EXPERIMENTAL A utility class to create Observables that start acting when subscribed to and responds correctly to back pressure requests from Subscribers.
EXPERIMENTAL A utility class to create Observables that start acting when subscribed to and responds correctly to back pressure requests from Subscribers.
Contains special Observables.
In Scala, this package only contains rx.lang.scala.observables.BlockingObservable. In the corresponding Java package
rx.observables
, there is also aGroupedObservable
and aConnectableObservable
, but these are not needed in Scala, because we use a pair(key, observable)
instead ofGroupedObservable
and a pair(startFunction, observable)
instead ofConnectableObservable
.