Package hu.akarnokd.rxjava3.joins
Class Pattern1<T1>
- java.lang.Object
-
- hu.akarnokd.rxjava3.joins.Pattern1<T1>
-
- Type Parameters:
T1- the first value type
public final class Pattern1<T1> extends java.lang.ObjectRepresents a join pattern over Observable sequences.
-
-
Constructor Summary
Constructors Constructor Description Pattern1(Observable<T1> o1)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R> Plan<R>then(Function<? super T1,? extends R> selector)Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
-
-
-
Constructor Detail
-
Pattern1
public Pattern1(Observable<T1> o1)
-
-
Method Detail
-
then
public <R> Plan<R> then(Function<? super T1,? extends R> selector)
Matches when all observable sequences have an available element and projects the elements by invoking the selector function.- Type Parameters:
R- the result type- Parameters:
selector- the function that will be invoked for elements in the source sequences.- Returns:
- the plan for the matching
- Throws:
java.lang.NullPointerException- if selector is null
-
-