public final class PatternN
extends java.lang.Object
| Constructor and Description |
|---|
PatternN(java.util.List<io.reactivex.Observable<? extends java.lang.Object>> observables) |
PatternN(java.util.List<io.reactivex.Observable<? extends java.lang.Object>> observables,
io.reactivex.Observable<? extends java.lang.Object> other) |
| Modifier and Type | Method and Description |
|---|---|
PatternN |
and(io.reactivex.Observable<? extends java.lang.Object> other)
Creates a pattern that matches when all previous observable sequences have an available element.
|
<R> Plan<R> |
then(io.reactivex.functions.Function<? super java.lang.Object[],R> selector)
Matches when all observable sequences have an available
element and projects the elements by invoking the selector function.
|
public PatternN(java.util.List<io.reactivex.Observable<? extends java.lang.Object>> observables)
public PatternN(java.util.List<io.reactivex.Observable<? extends java.lang.Object>> observables,
io.reactivex.Observable<? extends java.lang.Object> other)
public PatternN and(io.reactivex.Observable<? extends java.lang.Object> other)
other - Observable sequence to match with the previous sequences.public <R> Plan<R> then(io.reactivex.functions.Function<? super java.lang.Object[],R> selector)
R - the result typeselector - the function that will be invoked for elements in the source sequences.java.lang.NullPointerException - if selector is null