Package rx.internal.operators
Class OperatorSkip<T>
- java.lang.Object
-
- rx.internal.operators.OperatorSkip<T>
-
- Type Parameters:
T
- the value type
- All Implemented Interfaces:
Func1<Subscriber<? super T>,Subscriber<? super T>>
,Function
,Observable.Operator<T,T>
public final class OperatorSkip<T> extends java.lang.Object implements Observable.Operator<T,T>
Returns an Observable that skips the firstnum
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 theskip
operator.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) int
toSkip
-
Constructor Summary
Constructors Constructor Description OperatorSkip(int n)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Subscriber<? super T>
call(Subscriber<? super T> child)
-
-
-
Method Detail
-
call
public Subscriber<? super T> call(Subscriber<? super T> child)
- Specified by:
call
in interfaceFunc1<Subscriber<? super T>,Subscriber<? super T>>
-
-