HBASE-3634 Fix JavaDoc for put(List<Put> puts) in HTableInterface

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1096541 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2011-04-25 17:50:30 +00:00
parent d848b70936
commit f1653f9e65
2 changed files with 6 additions and 7 deletions

View File

@ -239,6 +239,8 @@ Release 0.90.3 - Unreleased
(Harsh J Chouraria)
HBASE-3817 HBase Shell has an issue accepting FILTER for the 'scan' command.
(Harsh J Chouraria)
HBASE-3634 Fix JavaDoc for put(List<Put> puts) in HTableInterface
(Harsh J Chouraria)
IMPROVEMENTS
HBASE-3747 ReplicationSource should differanciate remote and local exceptions

View File

@ -185,13 +185,10 @@ public interface HTableInterface {
* <p>
* If {@link #isAutoFlush isAutoFlush} is false, the update is buffered
* until the internal buffer is full.
* @param puts The list of mutations to apply. The list gets modified by this
* method (in particular it gets re-ordered, so the order in which the elements
* are inserted in the list gives no guarantee as to the order in which the
* {@link Put}s are executed).
* @throws IOException if a remote or network exception occurs. In that case
* the {@code puts} argument will contain the {@link Put} instances that
* have not be successfully applied.
* @param puts The list of mutations to apply. The batch put is done by
* aggregating the iteration of the Puts over the write buffer
* at the client-side for a single RPC call.
* @throws IOException if a remote or network exception occurs.
* @since 0.20.0
*/
void put(List<Put> puts) throws IOException;