RxJava
rx.operators
Class OperationSkipWhile
java.lang.Object
rx.operators.OperationSkipWhile
public final class OperationSkipWhile
- extends java.lang.Object
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.
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
OperationSkipWhile
public OperationSkipWhile()
skipWhileWithIndex
public static <T> Observable.OnSubscribeFunc<T> skipWhileWithIndex(Observable<? extends T> source,
Func2<? super T,java.lang.Integer,java.lang.Boolean> predicate)
skipWhile
public static <T> Observable.OnSubscribeFunc<T> skipWhile(Observable<? extends T> source,
Func1<? super T,java.lang.Boolean> predicate)