public final class OperatorSkip<T> extends java.lang.Object implements Observable.Operator<T,T>
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
operator.
Constructor and Description |
---|
OperatorSkip(int n) |
Modifier and Type | Method and Description |
---|---|
Subscriber<? super T> |
call(Subscriber<? super T> child) |
public Subscriber<? super T> call(Subscriber<? super T> child)
call
in interface Func1<Subscriber<? super T>,Subscriber<? super T>>