K - the type of the key emitted by the viewRB - the type of the request builder returned after each set operationpublic static interface SettableViewParameters.Unpaginated<K,RB extends RequestBuilder> extends SettableViewParameters.Common<K,RB>
| Modifier and Type | Method and Description |
|---|---|
RB |
limit(int limit)
Limits the number of returned rows to the specified count.
|
RB |
skip(long skip)
Skips the specified number of rows from the start.
|
descending, endKey, endKeyDocId, includeDocs, inclusiveEnd, keys, stale, startKey, startKeyDocIdRB limit(int limit)
Do not use skip/limit for pagination, instead use
ViewRequestBuilder.newPaginatedRequest(Key.Type,
Class)
.
limit - the number of results to limit toRB skip(long skip)
Do not use skip/limit for pagination, instead use
ViewRequestBuilder.newPaginatedRequest(Key.Type,
Class)
.
skip - the number of results to skip