Package io.reactivex.rxjava3.core
Interface FlowableConverter<T,R>
-
- Type Parameters:
T- the upstream typeR- the output type
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface FlowableConverter<@NonNull T,@NonNull R>Convenience interface and callback used by theFlowable.to(io.reactivex.rxjava3.core.FlowableConverter<T, ? extends R>)operator to turn aFlowableinto another value fluently.History: 2.1.7 - experimental
- Since:
- 2.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Rapply(@NonNull Flowable<@NonNull T> upstream)Applies a function to the upstreamFlowableand returns a converted value of typeR.
-