public interface

ObservableTransformer

io.reactivex.ObservableTransformer<Upstream, Downstream>

Class Overview

Interface to compose Observables.

Summary

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

Public Methods

public abstract ObservableSource<Downstream> apply (Observable<Upstream> upstream)

Applies a function to the upstream Observable and returns an ObservableSource with optionally different element type.

Parameters
upstream the upstream Observable instance
Returns
  • the transformed ObservableSource instance