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 Object
implements Function<T,ObservableSource<R>>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final BiFunction
<? super T, ? super U, ? extends R> private final Function
<? super T, ? extends ObservableSource<? extends U>> -
Constructor Summary
ConstructorsConstructorDescriptionFlatMapWithCombinerOuter
(BiFunction<? super T, ? super U, ? extends R> combiner, Function<? super T, ? extends ObservableSource<? extends U>> mapper) -
Method Summary
Modifier and TypeMethodDescriptionApply some calculation to the input value and return some other value.
-
Field Details
-
combiner
-
mapper
-
-
Constructor Details
-
FlatMapWithCombinerOuter
FlatMapWithCombinerOuter(BiFunction<? super T, ? super U, ? extends R> combiner, Function<? super T, ? extends ObservableSource<? extends U>> mapper)
-
-
Method Details
-
apply
Description copied from interface:Function
Apply some calculation to the input value and return some other value.
-