public interface

FlowableTransformer

io.reactivex.FlowableTransformer<Upstream, Downstream>

Class Overview

Interface to compose Flowables.

Summary

Public Methods
abstract Publisher<Downstream> apply(Flowable<Upstream> upstream)
Applies a function to the upstream Flowable and returns a Publisher with optionally different element type.

Public Methods

public abstract Publisher<Downstream> apply (Flowable<Upstream> upstream)

Applies a function to the upstream Flowable and returns a Publisher with optionally different element type.

Parameters
upstream the upstream Flowable instance
Returns
  • the transformed Publisher instance