Common interface for persistent related observables to implement such as collections and proxies
| Type | Name and description |
|---|---|
rx.Subscription |
subscribe(rx.Subscriber<? super T> subscriber)A convenience method that subscribes to the Observable as provided by toObservable. |
rx.Observable<T> |
toObservable()Returns an Observable for the operation |
A convenience method that subscribes to the Observable as provided by toObservable.
For more information on Subscriptions see the ReactiveX documentation.
subscriber - the Subscriber that will handle emissions and notifications from the ObservableReturns an Observable for the operation
For more information on Observables see the ReactiveX documentation.