You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by la...@apache.org on 2016/11/01 19:51:30 UTC

[36/50] hbase git commit: Label the new methods on Table introduced by HBASE-15645 as InterfaceAudience.Private

Label the new methods on Table introduced by HBASE-15645 as InterfaceAudience.Private

Signed-off-by: stack <st...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/719993e0
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/719993e0
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/719993e0

Branch: refs/heads/branch-1.0
Commit: 719993e0fe2b132b75a3689267ae4adff364b6aa
Parents: 48f158f
Author: Phil Yang <ud...@gmail.com>
Authored: Wed Apr 27 11:21:17 2016 +0800
Committer: stack <st...@apache.org>
Committed: Wed Apr 27 10:07:52 2016 -0700

----------------------------------------------------------------------
 .../src/main/java/org/apache/hadoop/hbase/client/Table.java      | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/719993e0/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Table.java
----------------------------------------------------------------------
diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Table.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Table.java
index 8c6169d..ee742b2 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Table.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Table.java
@@ -606,11 +606,13 @@ public interface Table extends Closeable {
    * early and throw SocketTimeoutException.
    * @param operationTimeout the total timeout of each operation in millisecond.
    */
+  @InterfaceAudience.Private
   public void setOperationTimeout(int operationTimeout);
 
   /**
    * Get timeout (millisecond) of each operation for in Table instance.
    */
+  @InterfaceAudience.Private
   public int getOperationTimeout();
 
   /**
@@ -620,10 +622,12 @@ public interface Table extends Closeable {
    * retries exhausted or operation timeout reached.
    * @param rpcTimeout the timeout of each rpc request in millisecond.
    */
+  @InterfaceAudience.Private
   public void setRpcTimeout(int rpcTimeout);
 
   /**
    * Get timeout (millisecond) of each rpc request in this Table instance.
    */
+  @InterfaceAudience.Private
   public int getRpcTimeout();
 }