CompositeObserver

public final class CompositeObserver<T>

A stream observer which delegates calls to multiple other observers with the same target type.

The observers are called in the exact same order in which they are specified on the object construction.

Parameters

<T>

the observed type

Constructors

Link copied to clipboard
public void CompositeObserver(Iterable<StreamObserver<? super T>> observers)

Functions

Link copied to clipboard
public void onCompleted()
Link copied to clipboard
public void onError(Throwable t)
Link copied to clipboard
public void onNext(T value)