RxJava



rx.operators
Class OperatorZipIterable<T1,T2,R>

java.lang.Object
  extended by rx.operators.OperatorZipIterable<T1,T2,R>
All Implemented Interfaces:
Func1<Subscriber<? super R>,Subscriber<? super T1>>, Function, Observable.Operator<R,T1>

public final class OperatorZipIterable<T1,T2,R>
extends java.lang.Object
implements Observable.Operator<R,T1>


Constructor Summary
OperatorZipIterable(java.lang.Iterable<? extends T2> iterable, Func2<? super T1,? super T2,? extends R> zipFunction)
           
 
Method Summary
 Subscriber<? super T1> call(Subscriber<? super R> subscriber)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OperatorZipIterable

public OperatorZipIterable(java.lang.Iterable<? extends T2> iterable,
                           Func2<? super T1,? super T2,? extends R> zipFunction)
Method Detail

call

public Subscriber<? super T1> call(Subscriber<? super R> subscriber)
Specified by:
call in interface Func1<Subscriber<? super R>,Subscriber<? super T1>>