RxJava



rx.operators
Class OperationSkip

java.lang.Object
  extended by rx.operators.OperationSkip

public final class OperationSkip
extends java.lang.Object

Returns an Observable that skips the first num items emitted by the source Observable.

You can ignore the first num items emitted by an Observable and attend only to those items that come after, by modifying the Observable with the skip operation.


Constructor Summary
OperationSkip()
           
 
Method Summary
static
<T> Observable.OnSubscribeFunc<T>
skip(Observable<? extends T> items, int num)
          Skips a specified number of contiguous values from the start of a Observable sequence and then returns the remaining values.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OperationSkip

public OperationSkip()
Method Detail

skip

public static <T> Observable.OnSubscribeFunc<T> skip(Observable<? extends T> items,
                                                     int num)
Skips a specified number of contiguous values from the start of a Observable sequence and then returns the remaining values.

Parameters:
items -
num -
Returns:
the observable sequence starting after a number of skipped values
See Also:
Observable.Skip(TSource) Method