public final class Skip
extends java.lang.Object
| Modifier and Type | Class and Description |
|---|---|
static class |
Skip.First<T>
Skips the given amount of next() messages from source and relays
the rest.
|
static class |
Skip.FirstTimed<T>
Skips elements of the source observable for the
specified amount of time.
|
static class |
Skip.Last<T>
Skips the last
count elements from the source observable. |
static class |
Skip.LastTimed<T>
Skips the elements from the end for the specified amount of time.
|
static class |
Skip.Until<T,U>
Skip the source elements until the signaller sends its first element.
|
static class |
Skip.While<T>
Skips the Ts from source while the specified condition returns true.
|
static class |
Skip.WhileIndexed<T>
Skips the Ts from source while the specified indexed condition returns true.
|
static class |
Skip.WhileLongIndexed<T>
Skips the Ts from source while the specified long indexed condition returns true.
|