Package rx.internal.operators
Class OperatorSkipWhile<T>
java.lang.Object
rx.internal.operators.OperatorSkipWhile<T>
- Type Parameters:
T- the value type
- All Implemented Interfaces:
Func1<Subscriber<? super T>,,Subscriber<? super T>> Function,Observable.Operator<T,T>
Skips any emitted source items as long as the specified condition holds true. Emits all further source items
as soon as the condition becomes false.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionSubscriber<? super T> call(Subscriber<? super T> child) toPredicate2(Func1<? super T, Boolean> predicate) Convert to Func2 type predicate.
-
Field Details
-
predicate
-
-
Constructor Details
-
OperatorSkipWhile
-
-
Method Details
-
call
- Specified by:
callin interfaceFunc1<Subscriber<? super T>,Subscriber<? super T>>
-
toPredicate2
Convert to Func2 type predicate.- Type Parameters:
T- the input value type- Parameters:
predicate- the single argument predicate function- Returns:
- The two argument function which ignores its second parameter
-