Package rx.internal.operators
Class OperatorWithLatestFromMany<T,R>
- java.lang.Object
-
- rx.internal.operators.OperatorWithLatestFromMany<T,R>
-
- All Implemented Interfaces:
Action
,Action1<Subscriber<? super R>>
,Function
,Observable.OnSubscribe<R>
public final class OperatorWithLatestFromMany<T,R> extends java.lang.Object implements Observable.OnSubscribe<R>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) static class
OperatorWithLatestFromMany.WithLatestMainSubscriber<T,R>
(package private) static class
OperatorWithLatestFromMany.WithLatestOtherSubscriber
-
Field Summary
Fields Modifier and Type Field Description (package private) FuncN<R>
combiner
(package private) Observable<T>
main
(package private) Observable<?>[]
others
(package private) java.lang.Iterable<Observable<?>>
othersIterable
-
Constructor Summary
Constructors Constructor Description OperatorWithLatestFromMany(Observable<T> main, Observable<?>[] others, java.lang.Iterable<Observable<?>> othersIterable, FuncN<R> combiner)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
call(Subscriber<? super R> t)
-
-
-
Field Detail
-
main
final Observable<T> main
-
others
final Observable<?>[] others
-
othersIterable
final java.lang.Iterable<Observable<?>> othersIterable
-
-
Constructor Detail
-
OperatorWithLatestFromMany
public OperatorWithLatestFromMany(Observable<T> main, Observable<?>[] others, java.lang.Iterable<Observable<?>> othersIterable, FuncN<R> combiner)
-
-
Method Detail
-
call
public void call(Subscriber<? super R> t)
-
-