limit method

PlexQuery<T> limit(
  1. int n
)

Limit number of results.

Implementation

PlexQuery<T> limit(int n) {
  _limit = n;
  return this;
}