Package rx.internal.operators
Class OperatorSkipUntil<T,U>
- java.lang.Object
-
- rx.internal.operators.OperatorSkipUntil<T,U>
-
- Type Parameters:
T
- the source and result value typeU
- element type of the signalling observable
- All Implemented Interfaces:
Func1<Subscriber<? super T>,Subscriber<? super T>>
,Function
,Observable.Operator<T,T>
public final class OperatorSkipUntil<T,U> extends java.lang.Object implements Observable.Operator<T,T>
Skip elements from the source Observable until the secondary observable fires an element. If the secondary Observable fires no elements, the primary won't fire any elements.- See Also:
- MSDN: Observable.SkipUntil
-
-
Field Summary
Fields Modifier and Type Field Description (package private) Observable<U>
other
-
Constructor Summary
Constructors Constructor Description OperatorSkipUntil(Observable<U> other)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Subscriber<? super T>
call(Subscriber<? super T> child)
-
-
-
Field Detail
-
other
final Observable<U> other
-
-
Constructor Detail
-
OperatorSkipUntil
public OperatorSkipUntil(Observable<U> other)
-
-
Method Detail
-
call
public Subscriber<? super T> call(Subscriber<? super T> child)
-
-