limit method
- int limit
Limits the number of results.
Implementation
FSPaginator<T> limit(int limit) {
query = query.limit(limit);
return this;
}
Limits the number of results.
FSPaginator<T> limit(int limit) {
query = query.limit(limit);
return this;
}