public interface

ObservableOperator

io.reactivex.ObservableOperator<Downstream, Upstream>

Class Overview

Interface to map/wrap a downstream observer to an upstream observer.

Summary

Public Methods
abstract Observer<? super Upstream> apply(Observer<? super Downstream> observer)
Applies a function to the child Observer and returns a new parent Observer.

Public Methods

public abstract Observer<? super Upstream> apply (Observer<? super Downstream> observer)

Applies a function to the child Observer and returns a new parent Observer.

Parameters
observer the child Observer instance
Returns
  • the parent Observer instance
Throws
Exception on failure