Upstream - the upstream value typeDownstream - the downstream value typepublic interface FlowableTransformer<Upstream,Downstream>
| Modifier and Type | Method and Description |
|---|---|
org.reactivestreams.Publisher<Downstream> |
apply(Flowable<Upstream> upstream)
Applies a function to the upstream Flowable and returns a Publisher with
optionally different element type.
|
@NonNull org.reactivestreams.Publisher<Downstream> apply(@NonNull Flowable<Upstream> upstream)
upstream - the upstream Flowable instance