perPage method

BagelDBRequest perPage(
  1. int resultsPerPage
)

define the resultsPerPage - how many results will be in each page

Implementation

BagelDBRequest perPage(int resultsPerPage) {
  _perPage = resultsPerPage;
  return this;
}