RxJava



rx.operators
Class OperatorMerge<T>

java.lang.Object
  extended by rx.operators.OperatorMerge<T>
All Implemented Interfaces:
Func1<Subscriber<? super T>,Subscriber<? super Observable<? extends T>>>, Function, Observable.Operator<T,Observable<? extends T>>

public final class OperatorMerge<T>
extends java.lang.Object
implements Observable.Operator<T,Observable<? extends T>>

Flattens a list of Observables into one Observable sequence, without any transformation.

You can combine the items emitted by multiple Observables so that they act like a single Observable, by using the merge operation.


Constructor Summary
OperatorMerge()
           
 
Method Summary
 Subscriber<Observable<? extends T>> call(Subscriber<? super T> outerOperation)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OperatorMerge

public OperatorMerge()
Method Detail

call

public Subscriber<Observable<? extends T>> call(Subscriber<? super T> outerOperation)
Specified by:
call in interface Func1<Subscriber<? super T>,Subscriber<? super Observable<? extends T>>>