|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectrx.operators.OperationSkipLast
public class OperationSkipLast
Bypasses a specified number of elements at the end of an observable sequence.
| Constructor Summary | |
|---|---|
OperationSkipLast()
|
|
| Method Summary | ||
|---|---|---|
static
|
skipLast(Observable<? extends T> source,
int count)
Bypasses a specified number of elements at the end of an observable sequence. |
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public OperationSkipLast()
| Method Detail |
|---|
public static <T> Observable.OnSubscribeFunc<T> skipLast(Observable<? extends T> source,
int count)
This operator accumulates a queue with a length enough to store the first count elements. As more elements are received, elements are taken from the front of the queue and produced on the result sequence. This causes elements to be delayed.
source - the source sequence.count - number of elements to bypass at the end of the source
sequence.
java.lang.IndexOutOfBoundsException - count is less than zero.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||