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:
parent
d848b70936
commit
f1653f9e65
|
@ -239,6 +239,8 @@ Release 0.90.3 - Unreleased
|
||||||
(Harsh J Chouraria)
|
(Harsh J Chouraria)
|
||||||
HBASE-3817 HBase Shell has an issue accepting FILTER for the 'scan' command.
|
HBASE-3817 HBase Shell has an issue accepting FILTER for the 'scan' command.
|
||||||
(Harsh J Chouraria)
|
(Harsh J Chouraria)
|
||||||
|
HBASE-3634 Fix JavaDoc for put(List<Put> puts) in HTableInterface
|
||||||
|
(Harsh J Chouraria)
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
HBASE-3747 ReplicationSource should differanciate remote and local exceptions
|
HBASE-3747 ReplicationSource should differanciate remote and local exceptions
|
||||||
|
|
|
@ -185,13 +185,10 @@ public interface HTableInterface {
|
||||||
* <p>
|
* <p>
|
||||||
* If {@link #isAutoFlush isAutoFlush} is false, the update is buffered
|
* If {@link #isAutoFlush isAutoFlush} is false, the update is buffered
|
||||||
* until the internal buffer is full.
|
* until the internal buffer is full.
|
||||||
* @param puts The list of mutations to apply. The list gets modified by this
|
* @param puts The list of mutations to apply. The batch put is done by
|
||||||
* method (in particular it gets re-ordered, so the order in which the elements
|
* aggregating the iteration of the Puts over the write buffer
|
||||||
* are inserted in the list gives no guarantee as to the order in which the
|
* at the client-side for a single RPC call.
|
||||||
* {@link Put}s are executed).
|
* @throws IOException if a remote or network exception occurs.
|
||||||
* @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.
|
|
||||||
* @since 0.20.0
|
* @since 0.20.0
|
||||||
*/
|
*/
|
||||||
void put(List<Put> puts) throws IOException;
|
void put(List<Put> puts) throws IOException;
|
||||||
|
|
Loading…
Reference in New Issue