T - the source element typeU - the intermediate element typeV - the output element typepublic static final class SelectMany.Paired<T,U,V> extends java.lang.Object implements Observable<V>
| Constructor and Description |
|---|
Paired(Observable<? extends T> source,
Func1<? super T,? extends Observable<? extends U>> collectionSelector,
Func2<? super T,? super U,? extends V> resultSelector)
Constructor.
|
| Modifier and Type | Method and Description |
|---|---|
java.io.Closeable |
register(Observer<? super V> observer)
Registers an observer for the notification of Ts.
|
public Paired(Observable<? extends T> source, Func1<? super T,? extends Observable<? extends U>> collectionSelector, Func2<? super T,? super U,? extends V> resultSelector)
source - the source of TscollectionSelector - the selector which returns an observable of intermediate VsresultSelector - the selector which gives an U for a T and V@Nonnull
public java.io.Closeable register(@Nonnull
Observer<? super V> observer)
Observableregister in interface Observable<V>observer - the observer of Ts or any supertype of it