Package rx.internal.operators
Class OnSubscribeDelaySubscriptionOther<T,U>
- java.lang.Object
-
- rx.internal.operators.OnSubscribeDelaySubscriptionOther<T,U>
-
- Type Parameters:
T
- the main typeU
- the other value type, ignored
- All Implemented Interfaces:
Action
,Action1<Subscriber<? super T>>
,Function
,Observable.OnSubscribe<T>
public final class OnSubscribeDelaySubscriptionOther<T,U> extends java.lang.Object implements Observable.OnSubscribe<T>
Delays the subscription to the main source until the other observable fires an event or completes.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) Observable<? extends T>
main
(package private) Observable<U>
other
-
Constructor Summary
Constructors Constructor Description OnSubscribeDelaySubscriptionOther(Observable<? extends T> main, Observable<U> other)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
call(Subscriber<? super T> t)
-
-
-
Field Detail
-
main
final Observable<? extends T> main
-
other
final Observable<U> other
-
-
Constructor Detail
-
OnSubscribeDelaySubscriptionOther
public OnSubscribeDelaySubscriptionOther(Observable<? extends T> main, Observable<U> other)
-
-
Method Detail
-
call
public void call(Subscriber<? super T> t)
-
-