Return-Path: X-Original-To: apmail-hbase-commits-archive@www.apache.org Delivered-To: apmail-hbase-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D477A18F69 for ; Fri, 29 Apr 2016 13:41:53 +0000 (UTC) Received: (qmail 67121 invoked by uid 500); 29 Apr 2016 13:41:53 -0000 Delivered-To: apmail-hbase-commits-archive@hbase.apache.org Received: (qmail 67019 invoked by uid 500); 29 Apr 2016 13:41:53 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 66998 invoked by uid 99); 29 Apr 2016 13:41:53 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Apr 2016 13:41:53 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 6F4D0DFAAB; Fri, 29 Apr 2016 13:41:53 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: busbey@apache.org To: commits@hbase.apache.org Date: Fri, 29 Apr 2016 13:41:54 -0000 Message-Id: <878f0614e81f45f38d49ee3f4b208a7c@git.apache.org> In-Reply-To: <5d759ebf4d7a413ba2dfa4ff960c4557@git.apache.org> References: <5d759ebf4d7a413ba2dfa4ff960c4557@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/2] hbase git commit: HBASE-15645 ADDENDUM Label the new methods on Table introduced by HBASE-15645 as InterfaceAudience.Private HBASE-15645 ADDENDUM Label the new methods on Table introduced by HBASE-15645 as InterfaceAudience.Private Signed-off-by: stack Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/f87a30b9 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/f87a30b9 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/f87a30b9 Branch: refs/heads/branch-1.1 Commit: f87a30b9dbbac6d1d066431e0ce6972358f6f7c6 Parents: 2e63f88 Author: Phil Yang Authored: Wed Apr 27 11:21:17 2016 +0800 Committer: Sean Busbey Committed: Fri Apr 29 08:41:03 2016 -0500 ---------------------------------------------------------------------- .../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/f87a30b9/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(); }