Package rx.internal.operators
Class OperatorWithLatestFrom<T,U,R>
java.lang.Object
rx.internal.operators.OperatorWithLatestFrom<T,U,R>
- Type Parameters:
T- the element type of the main observableU- the element type of the other observable that is merged into the mainR- the result element type
- All Implemented Interfaces:
Func1<Subscriber<? super R>,,Subscriber<? super T>> Function,Observable.Operator<R,T>
Combines values from two sources only when the main source emits.
-
Field Summary
FieldsModifier and TypeFieldDescription(package private) static final ObjectIndicates the other has not yet emitted a value.(package private) final Observable<? extends U> -
Constructor Summary
ConstructorsConstructorDescriptionOperatorWithLatestFrom(Observable<? extends U> other, Func2<? super T, ? super U, ? extends R> resultSelector) -
Method Summary