HBASE-2154 Fix Client#next(int) javadoc
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@901936 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4008068ad8
commit
1c6714733a
|
@ -185,6 +185,7 @@ Release 0.21.0 - Unreleased
|
|||
HBASE-2146 RPC related metrics are missing in 0.20.3 since recent changes
|
||||
(Gary Helmling via Lars George)
|
||||
HBASE-2150 Deprecated HBC(Configuration) constructor doesn't call this()
|
||||
HBASE-2154 Fix Client#next(int) javadoc
|
||||
|
||||
IMPROVEMENTS
|
||||
HBASE-1760 Cleanup TODOs in HTable
|
||||
|
|
|
@ -925,8 +925,12 @@ public class HTable implements HTableInterface {
|
|||
}
|
||||
|
||||
/**
|
||||
* Get <param>nbRows</param> rows.
|
||||
* How many RPCs are made is determined by the {@link Scan#setCaching(int)}
|
||||
* setting (or hbase.client.scanner.caching in hbase-site.xml).
|
||||
* @param nbRows number of rows to return
|
||||
* @return Between zero and <param>nbRows</param> RowResults
|
||||
* @return Between zero and <param>nbRows</param> RowResults. Scan is done
|
||||
* if returned array is of zero-length (We never return null).
|
||||
* @throws IOException
|
||||
*/
|
||||
public Result [] next(int nbRows) throws IOException {
|
||||
|
|
Loading…
Reference in New Issue