Class ObservableInternalHelper.FlatMapWithCombinerOuter<T,R,U>
- java.lang.Object
-
- io.reactivex.rxjava3.internal.operators.observable.ObservableInternalHelper.FlatMapWithCombinerOuter<T,R,U>
-
- All Implemented Interfaces:
Function<T,ObservableSource<R>>
- Enclosing class:
- ObservableInternalHelper
static final class ObservableInternalHelper.FlatMapWithCombinerOuter<T,R,U> extends java.lang.Object implements Function<T,ObservableSource<R>>
-
-
Field Summary
Fields Modifier and Type Field Description private BiFunction<? super T,? super U,? extends R>
combiner
private Function<? super T,? extends ObservableSource<? extends U>>
mapper
-
Constructor Summary
Constructors Constructor Description FlatMapWithCombinerOuter(BiFunction<? super T,? super U,? extends R> combiner, Function<? super T,? extends ObservableSource<? extends U>> mapper)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObservableSource<R>
apply(T t)
Apply some calculation to the input value and return some other value.
-
-
-
Field Detail
-
combiner
private final BiFunction<? super T,? super U,? extends R> combiner
-
mapper
private final Function<? super T,? extends ObservableSource<? extends U>> mapper
-
-
Constructor Detail
-
FlatMapWithCombinerOuter
FlatMapWithCombinerOuter(BiFunction<? super T,? super U,? extends R> combiner, Function<? super T,? extends ObservableSource<? extends U>> mapper)
-
-
Method Detail
-
apply
public ObservableSource<R> apply(T t) throws java.lang.Throwable
Description copied from interface:Function
Apply some calculation to the input value and return some other value.
-
-