T - public final class CompositeObservable<T>
extends java.lang.Object
| Constructor and Description |
|---|
CompositeObservable()
Creates a new CompositeObservable
|
CompositeObservable(rx.Observable.Transformer<T,T> transformer)
Creates a new CompositeObservable with the provided transformations applied to the returned Observable
yield from `toObservable()`.
|
| Modifier and Type | Method and Description |
|---|---|
rx.Subscription |
add(rx.Observable<T> observable) |
rx.subscriptions.CompositeSubscription |
addAll(rx.Observable<T>... observables) |
rx.Observable<T> |
toObservable()
Returns the `Observable` combining all the source Observables, with any transformations that were specified
on construction.
|
public CompositeObservable()
public CompositeObservable(rx.Observable.Transformer<T,T> transformer)
transformer - public rx.Observable<T> toObservable()
public rx.Subscription add(rx.Observable<T> observable)
public rx.subscriptions.CompositeSubscription addAll(rx.Observable<T>... observables)