T - the input element typeU - the iterable sequence's typeV - the output element typepublic static final class SelectMany.WithIterable<T,U,V> extends java.lang.Object implements Observable<V>
| Constructor and Description |
|---|
WithIterable(Observable<? extends T> source,
Func1<? super T,? extends java.lang.Iterable<? extends U>> selector,
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 WithIterable(Observable<? extends T> source, Func1<? super T,? extends java.lang.Iterable<? extends U>> selector, Func2<? super T,? super U,? extends V> resultSelector)
source - the source sequenceselector - the selector function for each iterableresultSelector - the selector function for a pair of source and iterable@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