Package io.reactivex.rxjava3.core
Interface ObservableConverter<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.
Convenience interface and callback used by the
Observable.to(io.reactivex.rxjava3.core.ObservableConverter<T, ? extends R>)
operator to turn an Observable
into another
value fluently.
History: 2.1.7 - experimental
- Since:
- 2.2
-
Method Summary
Modifier and TypeMethodDescriptionapply
(@NonNull Observable<@NonNull T> upstream) Applies a function to the upstreamObservable
and returns a converted value of typeR
.
-
Method Details
-
apply
Applies a function to the upstreamObservable
and returns a converted value of typeR
.- Parameters:
upstream
- the upstreamObservable
instance- Returns:
- the converted value
-