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>
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
operator.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
toSkip
final int toSkip
-
-
Constructor Details
-
OperatorSkip
public OperatorSkip(int n)
-
-
Method Details
-
call
- Specified by:
call
in interfaceFunc1<Subscriber<? super T>,
Subscriber<? super T>>
-