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