limit method

FSPaginator<T> limit(
  1. int limit
)

Limits the number of results.

Implementation

FSPaginator<T> limit(int limit) {
  query = query.limit(limit);
  return this;
}