RxJava



rx.operators
Class OperationSkipWhile

java.lang.Object
  extended by 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.


Constructor Summary
OperationSkipWhile()
           
 
Method Summary
static
<T> Observable.OnSubscribeFunc<T>
skipWhile(Observable<? extends T> source, Func1<? super T,java.lang.Boolean> predicate)
           
static
<T> Observable.OnSubscribeFunc<T>
skipWhileWithIndex(Observable<? extends T> source, Func2<? super T,java.lang.Integer,java.lang.Boolean> predicate)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OperationSkipWhile

public OperationSkipWhile()
Method Detail

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)