Scans a number of rows. Calling this method is equivalent to: this.#setMaxNumRows setMaxNumRows(nrows); this.#nextRows() nextRows(); @param nrows The maximum number of rows to retrieve. @return A deferred list of rows. @see #setMaxNumRows @see #nextRows()
(final int nrows)
| 713 | * @see #nextRows() |
| 714 | */ |
| 715 | public Deferred<ArrayList<ArrayList<KeyValue>>> nextRows(final int nrows) { |
| 716 | setMaxNumRows(nrows); |
| 717 | return nextRows(); |
| 718 | } |
| 719 | |
| 720 | /** |
| 721 | * Scans a number of rows. |