public interface PersistentObservable<T>
Common interface for persistent related observables to implement such as collections and proxies
Type Params | Return Type | Name and description |
---|---|---|
|
public rx.Subscription |
subscribe(rx.Subscriber<? super T> subscriber) A convenience method that subscribes to the Observable as provided by toObservable. |
|
public 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.