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