http://git-wip-us.apache.org/repos/asf/hbase-site/blob/33c287c2/devapidocs/org/apache/hadoop/hbase/client/ConnectionCallable.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/client/ConnectionCallable.html b/devapidocs/org/apache/hadoop/hbase/client/ConnectionCallable.html index a101deb..b308204 100644 --- a/devapidocs/org/apache/hadoop/hbase/client/ConnectionCallable.html +++ b/devapidocs/org/apache/hadoop/hbase/client/ConnectionCallable.html @@ -96,7 +96,7 @@ <dl><dt><span class="strong">Type Parameters:</span></dt><dd><code>V</code> - return type</dd></dl> <dl> <dt>All Implemented Interfaces:</dt> -<dd><a href="http://docs.oracle.com/javase/7/docs/api/java/io/Closeable.html?is-external=true" title="class or interface in java.io">Closeable</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang">AutoCloseable</a>, <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallable</a><V></dd> +<dd><a href="http://docs.oracle.com/javase/7/docs/api/java/io/Closeable.html?is-external=true" title="class or interface in java.io">Closeable</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang">AutoCloseable</a>, <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallable</a><V>, <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallableBase</a></dd> </dl> <hr> <br> @@ -169,7 +169,7 @@ implements <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallab <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/hadoop/hbase/client/ConnectionCallable.html#prepare(boolean)">prepare</a></strong>(boolean reload)</code> -<div class="block">Prepare by setting up any connections to servers, etc., ahead of <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#call(int)"><code>RetryingCallable.call(int)</code></a> invocation.</div> +<div class="block">Prepare by setting up any connections to servers, etc., ahead of call invocation.</div> </td> </tr> <tr class="rowColor"> @@ -181,7 +181,7 @@ implements <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallab <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/hadoop/hbase/client/ConnectionCallable.html#throwable(java.lang.Throwable,%20boolean)">throwable</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a> t, boolean retrying)</code> -<div class="block">Called when <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#call(int)"><code>RetryingCallable.call(int)</code></a> throws an exception and we are going to retry; take action to +<div class="block">Called when call throws an exception and we are going to retry; take action to make it so we succeed on next call (clear caches, do relookup of locations, etc.).</div> </td> </tr> @@ -256,11 +256,11 @@ implements <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallab <h4>prepare</h4> <pre>public void <a href="../../../../../src-html/org/apache/hadoop/hbase/client/ConnectionCallable.html#line.36">prepare</a>(boolean reload) throws <a href="http://docs.oracle.com/javase/7/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></pre> -<div class="block"><strong>Description copied from interface: <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#prepare(boolean)">RetryingCallable</a></code></strong></div> -<div class="block">Prepare by setting up any connections to servers, etc., ahead of <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#call(int)"><code>RetryingCallable.call(int)</code></a> invocation.</div> +<div class="block"><strong>Description copied from interface: <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html#prepare(boolean)">RetryingCallableBase</a></code></strong></div> +<div class="block">Prepare by setting up any connections to servers, etc., ahead of call invocation.</div> <dl> <dt><strong>Specified by:</strong></dt> -<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#prepare(boolean)">prepare</a></code> in interface <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallable</a><<a href="../../../../../org/apache/hadoop/hbase/client/ConnectionCallable.html" title="type parameter in ConnectionCallable">V</a>></code></dd> +<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html#prepare(boolean)">prepare</a></code> in interface <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallableBase</a></code></dd> <dt><span class="strong">Parameters:</span></dt><dd><code>reload</code> - Set this to true if need to requery locations</dd> <dt><span class="strong">Throws:</span></dt> <dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></code> - e</dd></dl> @@ -291,14 +291,15 @@ implements <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallab <h4>throwable</h4> <pre>public void <a href="../../../../../src-html/org/apache/hadoop/hbase/client/ConnectionCallable.html#line.44">throwable</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a> t, boolean retrying)</pre> -<div class="block"><strong>Description copied from interface: <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#throwable(java.lang.Throwable,%20boolean)">RetryingCallable</a></code></strong></div> -<div class="block">Called when <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#call(int)"><code>RetryingCallable.call(int)</code></a> throws an exception and we are going to retry; take action to +<div class="block"><strong>Description copied from interface: <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html#throwable(java.lang.Throwable,%20boolean)">RetryingCallableBase</a></code></strong></div> +<div class="block">Called when call throws an exception and we are going to retry; take action to make it so we succeed on next call (clear caches, do relookup of locations, etc.).</div> <dl> <dt><strong>Specified by:</strong></dt> -<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#throwable(java.lang.Throwable,%20boolean)">throwable</a></code> in interface <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallable</a><<a href="../../../../../org/apache/hadoop/hbase/client/ConnectionCallable.html" title="type parameter in ConnectionCallable">V</a>></code></dd> -<dd><code>retrying</code> - True if we are in retrying mode (we are not in retrying mode when max - retries == 1; we ARE in retrying mode if retries > 1 even when we are the last attempt)</dd></dl> +<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html#throwable(java.lang.Throwable,%20boolean)">throwable</a></code> in interface <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallableBase</a></code></dd> +<dt><span class="strong">Parameters:</span></dt><dd><code>t</code> - throwable which was thrown</dd><dd><code>retrying</code> - True if we are in retrying mode (we are not in retrying mode when max + retries == 1; we ARE in retrying mode if retries > 1 even when we are the + last attempt)</dd></dl> </li> </ul> <a name="getExceptionMessageAdditionalDetail()"> @@ -310,10 +311,10 @@ implements <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallab <pre>public <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> <a href="../../../../../src-html/org/apache/hadoop/hbase/client/ConnectionCallable.html#line.48">getExceptionMessageAdditionalDetail</a>()</pre> <dl> <dt><strong>Specified by:</strong></dt> -<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#getExceptionMessageAdditionalDetail()">getExceptionMessageAdditionalDetail</a></code> in interface <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallable</a><<a href="../../../../../org/apache/hadoop/hbase/client/ConnectionCallable.html" title="type parameter in ConnectionCallable">V</a>></code></dd> +<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html#getExceptionMessageAdditionalDetail()">getExceptionMessageAdditionalDetail</a></code> in interface <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallableBase</a></code></dd> <dt><span class="strong">Returns:</span></dt><dd>Some details from the implementation that we would like to add to a terminating - exception; i.e. a fatal exception is being thrown ending retries and we might like to add - more implementation-specific detail on to the exception being thrown.</dd></dl> + exception; i.e. a fatal exception is being thrown ending retries and we might like to + add more implementation-specific detail on to the exception being thrown.</dd></dl> </li> </ul> <a name="sleep(long, int)"> @@ -326,7 +327,8 @@ implements <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallab int tries)</pre> <dl> <dt><strong>Specified by:</strong></dt> -<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#sleep(long,%20int)">sleep</a></code> in interface <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallable</a><<a href="../../../../../org/apache/hadoop/hbase/client/ConnectionCallable.html" title="type parameter in ConnectionCallable">V</a>></code></dd> +<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html#sleep(long,%20int)">sleep</a></code> in interface <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallableBase</a></code></dd> +<dt><span class="strong">Parameters:</span></dt><dd><code>pause</code> - time to pause</dd><dd><code>tries</code> - amount of tries until till sleep</dd> <dt><span class="strong">Returns:</span></dt><dd>Suggestion on how much to sleep between retries</dd></dl> </li> </ul>
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/33c287c2/devapidocs/org/apache/hadoop/hbase/client/DelegatingRetryingCallable.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/client/DelegatingRetryingCallable.html b/devapidocs/org/apache/hadoop/hbase/client/DelegatingRetryingCallable.html index 6a7a09f..b4b260a 100644 --- a/devapidocs/org/apache/hadoop/hbase/client/DelegatingRetryingCallable.html +++ b/devapidocs/org/apache/hadoop/hbase/client/DelegatingRetryingCallable.html @@ -96,7 +96,7 @@ <dl><dt><span class="strong">Type Parameters:</span></dt><dd><code>T</code> - Result class from calls to the delegate <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client"><code>RetryingCallable</code></a></dd><dd><code>D</code> - Type of the delegate class</dd></dl> <dl> <dt>All Implemented Interfaces:</dt> -<dd><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallable</a><T></dd> +<dd><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallable</a><T>, <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallableBase</a></dd> </dl> <hr> <br> @@ -173,7 +173,7 @@ implements <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallab <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/hadoop/hbase/client/DelegatingRetryingCallable.html#prepare(boolean)">prepare</a></strong>(boolean reload)</code> -<div class="block">Prepare by setting up any connections to servers, etc., ahead of <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#call(int)"><code>RetryingCallable.call(int)</code></a> invocation.</div> +<div class="block">Prepare by setting up any connections to servers, etc., ahead of call invocation.</div> </td> </tr> <tr class="rowColor"> @@ -185,7 +185,7 @@ implements <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallab <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/hadoop/hbase/client/DelegatingRetryingCallable.html#throwable(java.lang.Throwable,%20boolean)">throwable</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a> t, boolean retrying)</code> -<div class="block">Called when <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#call(int)"><code>RetryingCallable.call(int)</code></a> throws an exception and we are going to retry; take action to +<div class="block">Called when call throws an exception and we are going to retry; take action to make it so we succeed on next call (clear caches, do relookup of locations, etc.).</div> </td> </tr> @@ -274,11 +274,11 @@ implements <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallab <h4>prepare</h4> <pre>public void <a href="../../../../../src-html/org/apache/hadoop/hbase/client/DelegatingRetryingCallable.html#line.46">prepare</a>(boolean reload) throws <a href="http://docs.oracle.com/javase/7/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></pre> -<div class="block"><strong>Description copied from interface: <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#prepare(boolean)">RetryingCallable</a></code></strong></div> -<div class="block">Prepare by setting up any connections to servers, etc., ahead of <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#call(int)"><code>RetryingCallable.call(int)</code></a> invocation.</div> +<div class="block"><strong>Description copied from interface: <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html#prepare(boolean)">RetryingCallableBase</a></code></strong></div> +<div class="block">Prepare by setting up any connections to servers, etc., ahead of call invocation.</div> <dl> <dt><strong>Specified by:</strong></dt> -<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#prepare(boolean)">prepare</a></code> in interface <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallable</a><<a href="../../../../../org/apache/hadoop/hbase/client/DelegatingRetryingCallable.html" title="type parameter in DelegatingRetryingCallable">T</a>></code></dd> +<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html#prepare(boolean)">prepare</a></code> in interface <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallableBase</a></code></dd> <dt><span class="strong">Parameters:</span></dt><dd><code>reload</code> - Set this to true if need to requery locations</dd> <dt><span class="strong">Throws:</span></dt> <dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></code> - e</dd></dl> @@ -292,14 +292,15 @@ implements <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallab <h4>throwable</h4> <pre>public void <a href="../../../../../src-html/org/apache/hadoop/hbase/client/DelegatingRetryingCallable.html#line.51">throwable</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a> t, boolean retrying)</pre> -<div class="block"><strong>Description copied from interface: <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#throwable(java.lang.Throwable,%20boolean)">RetryingCallable</a></code></strong></div> -<div class="block">Called when <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#call(int)"><code>RetryingCallable.call(int)</code></a> throws an exception and we are going to retry; take action to +<div class="block"><strong>Description copied from interface: <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html#throwable(java.lang.Throwable,%20boolean)">RetryingCallableBase</a></code></strong></div> +<div class="block">Called when call throws an exception and we are going to retry; take action to make it so we succeed on next call (clear caches, do relookup of locations, etc.).</div> <dl> <dt><strong>Specified by:</strong></dt> -<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#throwable(java.lang.Throwable,%20boolean)">throwable</a></code> in interface <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallable</a><<a href="../../../../../org/apache/hadoop/hbase/client/DelegatingRetryingCallable.html" title="type parameter in DelegatingRetryingCallable">T</a>></code></dd> -<dd><code>retrying</code> - True if we are in retrying mode (we are not in retrying mode when max - retries == 1; we ARE in retrying mode if retries > 1 even when we are the last attempt)</dd></dl> +<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html#throwable(java.lang.Throwable,%20boolean)">throwable</a></code> in interface <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallableBase</a></code></dd> +<dt><span class="strong">Parameters:</span></dt><dd><code>t</code> - throwable which was thrown</dd><dd><code>retrying</code> - True if we are in retrying mode (we are not in retrying mode when max + retries == 1; we ARE in retrying mode if retries > 1 even when we are the + last attempt)</dd></dl> </li> </ul> <a name="getExceptionMessageAdditionalDetail()"> @@ -311,10 +312,10 @@ implements <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallab <pre>public <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> <a href="../../../../../src-html/org/apache/hadoop/hbase/client/DelegatingRetryingCallable.html#line.56">getExceptionMessageAdditionalDetail</a>()</pre> <dl> <dt><strong>Specified by:</strong></dt> -<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#getExceptionMessageAdditionalDetail()">getExceptionMessageAdditionalDetail</a></code> in interface <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallable</a><<a href="../../../../../org/apache/hadoop/hbase/client/DelegatingRetryingCallable.html" title="type parameter in DelegatingRetryingCallable">T</a>></code></dd> +<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html#getExceptionMessageAdditionalDetail()">getExceptionMessageAdditionalDetail</a></code> in interface <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallableBase</a></code></dd> <dt><span class="strong">Returns:</span></dt><dd>Some details from the implementation that we would like to add to a terminating - exception; i.e. a fatal exception is being thrown ending retries and we might like to add - more implementation-specific detail on to the exception being thrown.</dd></dl> + exception; i.e. a fatal exception is being thrown ending retries and we might like to + add more implementation-specific detail on to the exception being thrown.</dd></dl> </li> </ul> <a name="sleep(long, int)"> @@ -327,7 +328,8 @@ implements <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallab int tries)</pre> <dl> <dt><strong>Specified by:</strong></dt> -<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#sleep(long,%20int)">sleep</a></code> in interface <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallable</a><<a href="../../../../../org/apache/hadoop/hbase/client/DelegatingRetryingCallable.html" title="type parameter in DelegatingRetryingCallable">T</a>></code></dd> +<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html#sleep(long,%20int)">sleep</a></code> in interface <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallableBase</a></code></dd> +<dt><span class="strong">Parameters:</span></dt><dd><code>pause</code> - time to pause</dd><dd><code>tries</code> - amount of tries until till sleep</dd> <dt><span class="strong">Returns:</span></dt><dd>Suggestion on how much to sleep between retries</dd></dl> </li> </ul> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/33c287c2/devapidocs/org/apache/hadoop/hbase/client/FastFailInterceptorContext.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/client/FastFailInterceptorContext.html b/devapidocs/org/apache/hadoop/hbase/client/FastFailInterceptorContext.html index 6d8388b..86928d9 100644 --- a/devapidocs/org/apache/hadoop/hbase/client/FastFailInterceptorContext.html +++ b/devapidocs/org/apache/hadoop/hbase/client/FastFailInterceptorContext.html @@ -217,7 +217,7 @@ extends <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallerInt </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../org/apache/hadoop/hbase/client/FastFailInterceptorContext.html" title="class in org.apache.hadoop.hbase.client">FastFailInterceptorContext</a></code></td> -<td class="colLast"><code><strong><a href="../../../../../org/apache/hadoop/hbase/client/FastFailInterceptorContext.html#prepare(org.apache.hadoop.hbase.client.RetryingCallable)">prepare</a></strong>(<a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallable</a><?> callable)</code> +<td class="colLast"><code><strong><a href="../../../../../org/apache/hadoop/hbase/client/FastFailInterceptorContext.html#prepare(org.apache.hadoop.hbase.client.RetryingCallableBase)">prepare</a></strong>(<a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallableBase</a> callable)</code> <div class="block">This prepares the context object by populating it with information specific to the implementation of the <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallerInterceptor.html" title="class in org.apache.hadoop.hbase.client"><code>RetryingCallerInterceptor</code></a> along with which this will be used.</div> @@ -225,7 +225,7 @@ extends <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallerInt </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../org/apache/hadoop/hbase/client/FastFailInterceptorContext.html" title="class in org.apache.hadoop.hbase.client">FastFailInterceptorContext</a></code></td> -<td class="colLast"><code><strong><a href="../../../../../org/apache/hadoop/hbase/client/FastFailInterceptorContext.html#prepare(org.apache.hadoop.hbase.client.RetryingCallable,%20int)">prepare</a></strong>(<a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallable</a><?> callable, +<td class="colLast"><code><strong><a href="../../../../../org/apache/hadoop/hbase/client/FastFailInterceptorContext.html#prepare(org.apache.hadoop.hbase.client.RetryingCallableBase,%20int)">prepare</a></strong>(<a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallableBase</a> callable, int tries)</code> <div class="block">Telescopic extension that takes which of the many retries we are currently in.</div> @@ -510,40 +510,40 @@ extends <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallerInt </dl> </li> </ul> -<a name="prepare(org.apache.hadoop.hbase.client.RetryingCallable)"> +<a name="prepare(org.apache.hadoop.hbase.client.RetryingCallableBase)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>prepare</h4> -<pre>public <a href="../../../../../org/apache/hadoop/hbase/client/FastFailInterceptorContext.html" title="class in org.apache.hadoop.hbase.client">FastFailInterceptorContext</a> <a href="../../../../../src-html/org/apache/hadoop/hbase/client/FastFailInterceptorContext.html#line.121">prepare</a>(<a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallable</a><?> callable)</pre> -<div class="block"><strong>Description copied from class: <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallerInterceptorContext.html#prepare(org.apache.hadoop.hbase.client.RetryingCallable)">RetryingCallerInterceptorContext</a></code></strong></div> +<pre>public <a href="../../../../../org/apache/hadoop/hbase/client/FastFailInterceptorContext.html" title="class in org.apache.hadoop.hbase.client">FastFailInterceptorContext</a> <a href="../../../../../src-html/org/apache/hadoop/hbase/client/FastFailInterceptorContext.html#line.121">prepare</a>(<a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallableBase</a> callable)</pre> +<div class="block"><strong>Description copied from class: <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallerInterceptorContext.html#prepare(org.apache.hadoop.hbase.client.RetryingCallableBase)">RetryingCallerInterceptorContext</a></code></strong></div> <div class="block">This prepares the context object by populating it with information specific to the implementation of the <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallerInterceptor.html" title="class in org.apache.hadoop.hbase.client"><code>RetryingCallerInterceptor</code></a> along with which this will be used.</div> <dl> <dt><strong>Specified by:</strong></dt> -<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallerInterceptorContext.html#prepare(org.apache.hadoop.hbase.client.RetryingCallable)">prepare</a></code> in class <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallerInterceptorContext.html" title="class in org.apache.hadoop.hbase.client">RetryingCallerInterceptorContext</a></code></dd> +<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallerInterceptorContext.html#prepare(org.apache.hadoop.hbase.client.RetryingCallableBase)">prepare</a></code> in class <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallerInterceptorContext.html" title="class in org.apache.hadoop.hbase.client">RetryingCallerInterceptorContext</a></code></dd> <dt><span class="strong">Parameters:</span></dt><dd><code>callable</code> - : The <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client"><code>RetryingCallable</code></a> that contains the information about the call that is being made.</dd> <dt><span class="strong">Returns:</span></dt><dd>A new <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallerInterceptorContext.html" title="class in org.apache.hadoop.hbase.client"><code>RetryingCallerInterceptorContext</code></a> object that can be used for use in the current retrying call</dd></dl> </li> </ul> -<a name="prepare(org.apache.hadoop.hbase.client.RetryingCallable, int)"> +<a name="prepare(org.apache.hadoop.hbase.client.RetryingCallableBase, int)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>prepare</h4> -<pre>public <a href="../../../../../org/apache/hadoop/hbase/client/FastFailInterceptorContext.html" title="class in org.apache.hadoop.hbase.client">FastFailInterceptorContext</a> <a href="../../../../../src-html/org/apache/hadoop/hbase/client/FastFailInterceptorContext.html#line.125">prepare</a>(<a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallable</a><?> callable, +<pre>public <a href="../../../../../org/apache/hadoop/hbase/client/FastFailInterceptorContext.html" title="class in org.apache.hadoop.hbase.client">FastFailInterceptorContext</a> <a href="../../../../../src-html/org/apache/hadoop/hbase/client/FastFailInterceptorContext.html#line.125">prepare</a>(<a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallableBase</a> callable, int tries)</pre> -<div class="block"><strong>Description copied from class: <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallerInterceptorContext.html#prepare(org.apache.hadoop.hbase.client.RetryingCallable,%20int)">RetryingCallerInterceptorContext</a></code></strong></div> +<div class="block"><strong>Description copied from class: <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallerInterceptorContext.html#prepare(org.apache.hadoop.hbase.client.RetryingCallableBase,%20int)">RetryingCallerInterceptorContext</a></code></strong></div> <div class="block">Telescopic extension that takes which of the many retries we are currently in.</div> <dl> <dt><strong>Specified by:</strong></dt> -<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallerInterceptorContext.html#prepare(org.apache.hadoop.hbase.client.RetryingCallable,%20int)">prepare</a></code> in class <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallerInterceptorContext.html" title="class in org.apache.hadoop.hbase.client">RetryingCallerInterceptorContext</a></code></dd> +<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallerInterceptorContext.html#prepare(org.apache.hadoop.hbase.client.RetryingCallableBase,%20int)">prepare</a></code> in class <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallerInterceptorContext.html" title="class in org.apache.hadoop.hbase.client">RetryingCallerInterceptorContext</a></code></dd> <dt><span class="strong">Parameters:</span></dt><dd><code>callable</code> - : The <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client"><code>RetryingCallable</code></a> that contains the information about the call that is being made.</dd><dd><code>tries</code> - : The retry number that we are currently in.</dd> <dt><span class="strong">Returns:</span></dt><dd>A new context object that can be used for use in the current http://git-wip-us.apache.org/repos/asf/hbase-site/blob/33c287c2/devapidocs/org/apache/hadoop/hbase/client/FlushRegionCallable.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/client/FlushRegionCallable.html b/devapidocs/org/apache/hadoop/hbase/client/FlushRegionCallable.html index c4bf375..1f8e4cc 100644 --- a/devapidocs/org/apache/hadoop/hbase/client/FlushRegionCallable.html +++ b/devapidocs/org/apache/hadoop/hbase/client/FlushRegionCallable.html @@ -36,7 +36,7 @@ <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/apache/hadoop/hbase/client/FastFailInterceptorContext.html" title="class in org.apache.hadoop.hbase.client"><span class="strong">Prev Class</span></a></li> -<li><a href="../../../../../org/apache/hadoop/hbase/client/Get.html" title="class in org.apache.hadoop.hbase.client"><span class="strong">Next Class</span></a></li> +<li><a href="../../../../../org/apache/hadoop/hbase/client/Future.html" title="interface in org.apache.hadoop.hbase.client"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/hadoop/hbase/client/FlushRegionCallable.html" target="_top">Frames</a></li> @@ -100,7 +100,7 @@ <li class="blockList"> <dl> <dt>All Implemented Interfaces:</dt> -<dd><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallable</a><org.apache.hadoop.hbase.protobuf.generated.AdminProtos.FlushRegionResponse></dd> +<dd><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallable</a><org.apache.hadoop.hbase.protobuf.generated.AdminProtos.FlushRegionResponse>, <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallableBase</a></dd> </dl> <hr> <br> @@ -205,7 +205,7 @@ extends <a href="../../../../../org/apache/hadoop/hbase/client/RegionAdminServic <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/hadoop/hbase/client/FlushRegionCallable.html#prepare(boolean)">prepare</a></strong>(boolean reload)</code> -<div class="block">Prepare by setting up any connections to servers, etc., ahead of <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#call(int)"><code>RetryingCallable.call(int)</code></a> invocation.</div> +<div class="block">Prepare by setting up any connections to servers, etc., ahead of call invocation.</div> </td> </tr> </table> @@ -339,11 +339,11 @@ extends <a href="../../../../../org/apache/hadoop/hbase/client/RegionAdminServic <h4>prepare</h4> <pre>public void <a href="../../../../../src-html/org/apache/hadoop/hbase/client/FlushRegionCallable.html#line.72">prepare</a>(boolean reload) throws <a href="http://docs.oracle.com/javase/7/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></pre> -<div class="block"><strong>Description copied from interface: <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#prepare(boolean)">RetryingCallable</a></code></strong></div> -<div class="block">Prepare by setting up any connections to servers, etc., ahead of <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#call(int)"><code>RetryingCallable.call(int)</code></a> invocation.</div> +<div class="block"><strong>Description copied from interface: <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html#prepare(boolean)">RetryingCallableBase</a></code></strong></div> +<div class="block">Prepare by setting up any connections to servers, etc., ahead of call invocation.</div> <dl> <dt><strong>Specified by:</strong></dt> -<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#prepare(boolean)">prepare</a></code> in interface <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallable</a><org.apache.hadoop.hbase.protobuf.generated.AdminProtos.FlushRegionResponse></code></dd> +<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html#prepare(boolean)">prepare</a></code> in interface <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallableBase</a></code></dd> <dt><strong>Overrides:</strong></dt> <dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RegionAdminServiceCallable.html#prepare(boolean)">prepare</a></code> in class <code><a href="../../../../../org/apache/hadoop/hbase/client/RegionAdminServiceCallable.html" title="class in org.apache.hadoop.hbase.client">RegionAdminServiceCallable</a><org.apache.hadoop.hbase.protobuf.generated.AdminProtos.FlushRegionResponse></code></dd> <dt><span class="strong">Parameters:</span></dt><dd><code>reload</code> - Set this to true if need to requery locations</dd> @@ -390,7 +390,7 @@ extends <a href="../../../../../org/apache/hadoop/hbase/client/RegionAdminServic <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/apache/hadoop/hbase/client/FastFailInterceptorContext.html" title="class in org.apache.hadoop.hbase.client"><span class="strong">Prev Class</span></a></li> -<li><a href="../../../../../org/apache/hadoop/hbase/client/Get.html" title="class in org.apache.hadoop.hbase.client"><span class="strong">Next Class</span></a></li> +<li><a href="../../../../../org/apache/hadoop/hbase/client/Future.html" title="interface in org.apache.hadoop.hbase.client"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/hadoop/hbase/client/FlushRegionCallable.html" target="_top">Frames</a></li> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/33c287c2/devapidocs/org/apache/hadoop/hbase/client/Future.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/client/Future.html b/devapidocs/org/apache/hadoop/hbase/client/Future.html new file mode 100644 index 0000000..0c21aa5 --- /dev/null +++ b/devapidocs/org/apache/hadoop/hbase/client/Future.html @@ -0,0 +1,195 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!-- NewPage --> +<html lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> +<title>Future (Apache HBase 2.0.0-SNAPSHOT API)</title> +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> +</head> +<body> +<script type="text/javascript"><!-- + if (location.href.indexOf('is-external=true') == -1) { + parent.document.title="Future (Apache HBase 2.0.0-SNAPSHOT API)"; + } +//--> +</script> +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<!-- ========= START OF TOP NAVBAR ======= --> +<div class="topNav"><a name="navbar_top"> +<!-- --> +</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> +<!-- --> +</a> +<ul class="navList" title="Navigation"> +<li><a href="../../../../../overview-summary.html">Overview</a></li> +<li><a href="package-summary.html">Package</a></li> +<li class="navBarCell1Rev">Class</li> +<li><a href="class-use/Future.html">Use</a></li> +<li><a href="package-tree.html">Tree</a></li> +<li><a href="../../../../../deprecated-list.html">Deprecated</a></li> +<li><a href="../../../../../index-all.html">Index</a></li> +<li><a href="../../../../../help-doc.html">Help</a></li> +</ul> +</div> +<div class="subNav"> +<ul class="navList"> +<li><a href="../../../../../org/apache/hadoop/hbase/client/FlushRegionCallable.html" title="class in org.apache.hadoop.hbase.client"><span class="strong">Prev Class</span></a></li> +<li><a href="../../../../../org/apache/hadoop/hbase/client/Get.html" title="class in org.apache.hadoop.hbase.client"><span class="strong">Next Class</span></a></li> +</ul> +<ul class="navList"> +<li><a href="../../../../../index.html?org/apache/hadoop/hbase/client/Future.html" target="_top">Frames</a></li> +<li><a href="Future.html" target="_top">No Frames</a></li> +</ul> +<ul class="navList" id="allclasses_navbar_top"> +<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> +</ul> +<div> +<script type="text/javascript"><!-- + allClassesLink = document.getElementById("allclasses_navbar_top"); + if(window==top) { + allClassesLink.style.display = "block"; + } + else { + allClassesLink.style.display = "none"; + } + //--> +</script> +</div> +<div> +<ul class="subNavList"> +<li>Summary: </li> +<li>Nested | </li> +<li>Field | </li> +<li>Constr | </li> +<li>Method</li> +</ul> +<ul class="subNavList"> +<li>Detail: </li> +<li>Field | </li> +<li>Constr | </li> +<li>Method</li> +</ul> +</div> +<a name="skip-navbar_top"> +<!-- --> +</a></div> +<!-- ========= END OF TOP NAVBAR ========= --> +<!-- ======== START OF CLASS DATA ======== --> +<div class="header"> +<div class="subTitle">org.apache.hadoop.hbase.client</div> +<h2 title="Interface Future" class="title">Interface Future<V></h2> +</div> +<div class="contentContainer"> +<div class="description"> +<ul class="blockList"> +<li class="blockList"> +<dl><dt><span class="strong">Type Parameters:</span></dt><dd><code>V</code> - Value type</dd></dl> +<dl> +<dt>All Superinterfaces:</dt> +<dd><a href="http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/Future.html?is-external=true" title="class or interface in java.util.concurrent">Future</a><V></dd> +</dl> +<hr> +<br> +<pre><a href="../../../../../org/apache/hadoop/hbase/classification/InterfaceAudience.Public.html" title="annotation in org.apache.hadoop.hbase.classification">@InterfaceAudience.Public</a> +<a href="../../../../../org/apache/hadoop/hbase/classification/InterfaceStability.Evolving.html" title="annotation in org.apache.hadoop.hbase.classification">@InterfaceStability.Evolving</a> +public interface <a href="../../../../../src-html/org/apache/hadoop/hbase/client/Future.html#line.29">Future</a><V> +extends io.netty.util.concurrent.Future<V></pre> +<div class="block">Promise for responses</div> +</li> +</ul> +</div> +<div class="summary"> +<ul class="blockList"> +<li class="blockList"> +<!-- ========== METHOD SUMMARY =========== --> +<ul class="blockList"> +<li class="blockList"><a name="method_summary"> +<!-- --> +</a> +<h3>Method Summary</h3> +<ul class="blockList"> +<li class="blockList"><a name="methods_inherited_from_class_io.netty.util.concurrent.Future"> +<!-- --> +</a> +<h3>Methods inherited from interface io.netty.util.concurrent.Future</h3> +<code>addListener, addListeners, await, await, await, awaitUninterruptibly, awaitUninterruptibly, awaitUninterruptibly, cancel, cause, getNow, isCancellable, isSuccess, removeListener, removeListeners, sync, syncUninterruptibly</code></li> +</ul> +<ul class="blockList"> +<li class="blockList"><a name="methods_inherited_from_class_java.util.concurrent.Future"> +<!-- --> +</a> +<h3>Methods inherited from interface java.util.concurrent.<a href="http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/Future.html?is-external=true" title="class or interface in java.util.concurrent">Future</a></h3> +<code><a href="http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/Future.html?is-external=true#get()" title="class or interface in java.util.concurrent">get</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/Future.html?is-external=true#get(long,%20java.util.concurrent.TimeUnit)" title="class or interface in java.util.concurrent">get</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/Future.html?is-external=true#isCancelled()" title="class or interface in java.util.concurrent">isCancelled</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/Future.html?is-external=true#isDone()" title="class or interface in java.util.concurrent">isDone</a></code></li> +</ul> +</li> +</ul> +</li> +</ul> +</div> +</div> +<!-- ========= END OF CLASS DATA ========= --> +<!-- ======= START OF BOTTOM NAVBAR ====== --> +<div class="bottomNav"><a name="navbar_bottom"> +<!-- --> +</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> +<!-- --> +</a> +<ul class="navList" title="Navigation"> +<li><a href="../../../../../overview-summary.html">Overview</a></li> +<li><a href="package-summary.html">Package</a></li> +<li class="navBarCell1Rev">Class</li> +<li><a href="class-use/Future.html">Use</a></li> +<li><a href="package-tree.html">Tree</a></li> +<li><a href="../../../../../deprecated-list.html">Deprecated</a></li> +<li><a href="../../../../../index-all.html">Index</a></li> +<li><a href="../../../../../help-doc.html">Help</a></li> +</ul> +</div> +<div class="subNav"> +<ul class="navList"> +<li><a href="../../../../../org/apache/hadoop/hbase/client/FlushRegionCallable.html" title="class in org.apache.hadoop.hbase.client"><span class="strong">Prev Class</span></a></li> +<li><a href="../../../../../org/apache/hadoop/hbase/client/Get.html" title="class in org.apache.hadoop.hbase.client"><span class="strong">Next Class</span></a></li> +</ul> +<ul class="navList"> +<li><a href="../../../../../index.html?org/apache/hadoop/hbase/client/Future.html" target="_top">Frames</a></li> +<li><a href="Future.html" target="_top">No Frames</a></li> +</ul> +<ul class="navList" id="allclasses_navbar_bottom"> +<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> +</ul> +<div> +<script type="text/javascript"><!-- + allClassesLink = document.getElementById("allclasses_navbar_bottom"); + if(window==top) { + allClassesLink.style.display = "block"; + } + else { + allClassesLink.style.display = "none"; + } + //--> +</script> +</div> +<div> +<ul class="subNavList"> +<li>Summary: </li> +<li>Nested | </li> +<li>Field | </li> +<li>Constr | </li> +<li>Method</li> +</ul> +<ul class="subNavList"> +<li>Detail: </li> +<li>Field | </li> +<li>Constr | </li> +<li>Method</li> +</ul> +</div> +<a name="skip-navbar_bottom"> +<!-- --> +</a></div> +<!-- ======== END OF BOTTOM NAVBAR ======= --> +<p class="legalCopy"><small>Copyright © 2007–2016 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p> +</body> +</html> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/33c287c2/devapidocs/org/apache/hadoop/hbase/client/Get.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/client/Get.html b/devapidocs/org/apache/hadoop/hbase/client/Get.html index 0832200..b506228 100644 --- a/devapidocs/org/apache/hadoop/hbase/client/Get.html +++ b/devapidocs/org/apache/hadoop/hbase/client/Get.html @@ -35,7 +35,7 @@ </div> <div class="subNav"> <ul class="navList"> -<li><a href="../../../../../org/apache/hadoop/hbase/client/FlushRegionCallable.html" title="class in org.apache.hadoop.hbase.client"><span class="strong">Prev Class</span></a></li> +<li><a href="../../../../../org/apache/hadoop/hbase/client/Future.html" title="interface in org.apache.hadoop.hbase.client"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../../org/apache/hadoop/hbase/client/HBaseAdmin.html" title="class in org.apache.hadoop.hbase.client"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> @@ -1215,7 +1215,7 @@ public <a href="../../../../../org/apache/hadoop/hbase/client/Get.html" tit </div> <div class="subNav"> <ul class="navList"> -<li><a href="../../../../../org/apache/hadoop/hbase/client/FlushRegionCallable.html" title="class in org.apache.hadoop.hbase.client"><span class="strong">Prev Class</span></a></li> +<li><a href="../../../../../org/apache/hadoop/hbase/client/Future.html" title="interface in org.apache.hadoop.hbase.client"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../../org/apache/hadoop/hbase/client/HBaseAdmin.html" title="class in org.apache.hadoop.hbase.client"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/33c287c2/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.html b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.html index 1f2232b..95b9dba 100644 --- a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.html +++ b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.html @@ -499,14 +499,14 @@ implements <a href="../../../../../org/apache/hadoop/hbase/client/Admin.html" ti </td> </tr> <tr class="rowColor"> -<td class="colFirst"><code><a href="../../../../../org/apache/hadoop/hbase/ipc/CoprocessorRpcChannel.html" title="class in org.apache.hadoop.hbase.ipc">CoprocessorRpcChannel</a></code></td> +<td class="colFirst"><code><a href="../../../../../org/apache/hadoop/hbase/ipc/CoprocessorRpcChannel.html" title="interface in org.apache.hadoop.hbase.ipc">CoprocessorRpcChannel</a></code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/hadoop/hbase/client/HBaseAdmin.html#coprocessorService()">coprocessorService</a></strong>()</code> <div class="block">Creates and returns a <code>RpcChannel</code> instance connected to the active master.</div> </td> </tr> <tr class="altColor"> -<td class="colFirst"><code><a href="../../../../../org/apache/hadoop/hbase/ipc/CoprocessorRpcChannel.html" title="class in org.apache.hadoop.hbase.ipc">CoprocessorRpcChannel</a></code></td> +<td class="colFirst"><code><a href="../../../../../org/apache/hadoop/hbase/ipc/CoprocessorRpcChannel.html" title="interface in org.apache.hadoop.hbase.ipc">CoprocessorRpcChannel</a></code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/hadoop/hbase/client/HBaseAdmin.html#coprocessorService(org.apache.hadoop.hbase.ServerName)">coprocessorService</a></strong>(<a href="../../../../../org/apache/hadoop/hbase/ServerName.html" title="class in org.apache.hadoop.hbase">ServerName</a> sn)</code> <div class="block">Creates and returns a <code>RpcChannel</code> instance connected to the passed region server.</div> @@ -4824,7 +4824,7 @@ public byte[][] <a href="../../../../../src-html/org/apache/hadoop/hba <ul class="blockList"> <li class="blockList"> <h4>coprocessorService</h4> -<pre>public <a href="../../../../../org/apache/hadoop/hbase/ipc/CoprocessorRpcChannel.html" title="class in org.apache.hadoop.hbase.ipc">CoprocessorRpcChannel</a> <a href="../../../../../src-html/org/apache/hadoop/hbase/client/HBaseAdmin.html#line.2900">coprocessorService</a>()</pre> +<pre>public <a href="../../../../../org/apache/hadoop/hbase/ipc/CoprocessorRpcChannel.html" title="interface in org.apache.hadoop.hbase.ipc">CoprocessorRpcChannel</a> <a href="../../../../../src-html/org/apache/hadoop/hbase/client/HBaseAdmin.html#line.2900">coprocessorService</a>()</pre> <div class="block"><strong>Description copied from interface: <code><a href="../../../../../org/apache/hadoop/hbase/client/Admin.html#coprocessorService()">Admin</a></code></strong></div> <div class="block">Creates and returns a <code>RpcChannel</code> instance connected to the active master. <p> The obtained <code>RpcChannel</code> instance can be used to access @@ -4850,7 +4850,7 @@ public byte[][] <a href="../../../../../src-html/org/apache/hadoop/hba <ul class="blockList"> <li class="blockList"> <h4>coprocessorService</h4> -<pre>public <a href="../../../../../org/apache/hadoop/hbase/ipc/CoprocessorRpcChannel.html" title="class in org.apache.hadoop.hbase.ipc">CoprocessorRpcChannel</a> <a href="../../../../../src-html/org/apache/hadoop/hbase/client/HBaseAdmin.html#line.2921">coprocessorService</a>(<a href="../../../../../org/apache/hadoop/hbase/ServerName.html" title="class in org.apache.hadoop.hbase">ServerName</a> sn)</pre> +<pre>public <a href="../../../../../org/apache/hadoop/hbase/ipc/CoprocessorRpcChannel.html" title="interface in org.apache.hadoop.hbase.ipc">CoprocessorRpcChannel</a> <a href="../../../../../src-html/org/apache/hadoop/hbase/client/HBaseAdmin.html#line.2921">coprocessorService</a>(<a href="../../../../../org/apache/hadoop/hbase/ServerName.html" title="class in org.apache.hadoop.hbase">ServerName</a> sn)</pre> <div class="block"><strong>Description copied from interface: <code><a href="../../../../../org/apache/hadoop/hbase/client/Admin.html#coprocessorService(org.apache.hadoop.hbase.ServerName)">Admin</a></code></strong></div> <div class="block">Creates and returns a <code>RpcChannel</code> instance connected to the passed region server. http://git-wip-us.apache.org/repos/asf/hbase-site/blob/33c287c2/devapidocs/org/apache/hadoop/hbase/client/HTable.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/client/HTable.html b/devapidocs/org/apache/hadoop/hbase/client/HTable.html index 4f98501..f9f979e 100644 --- a/devapidocs/org/apache/hadoop/hbase/client/HTable.html +++ b/devapidocs/org/apache/hadoop/hbase/client/HTable.html @@ -389,7 +389,7 @@ implements <a href="../../../../../org/apache/hadoop/hbase/client/HTableInterfac </td> </tr> <tr class="altColor"> -<td class="colFirst"><code><a href="../../../../../org/apache/hadoop/hbase/ipc/CoprocessorRpcChannel.html" title="class in org.apache.hadoop.hbase.ipc">CoprocessorRpcChannel</a></code></td> +<td class="colFirst"><code><a href="../../../../../org/apache/hadoop/hbase/ipc/CoprocessorRpcChannel.html" title="interface in org.apache.hadoop.hbase.ipc">CoprocessorRpcChannel</a></code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/hadoop/hbase/client/HTable.html#coprocessorService(byte[])">coprocessorService</a></strong>(byte[] row)</code> <div class="block">Creates and returns a <code>RpcChannel</code> instance connected to the table region containing the specified row.</div> @@ -1877,7 +1877,7 @@ public <a href="../../../../../org/apache/hadoop/hbase/client/HConnection.h <ul class="blockList"> <li class="blockList"> <h4>coprocessorService</h4> -<pre>public <a href="../../../../../org/apache/hadoop/hbase/ipc/CoprocessorRpcChannel.html" title="class in org.apache.hadoop.hbase.ipc">CoprocessorRpcChannel</a> <a href="../../../../../src-html/org/apache/hadoop/hbase/client/HTable.html#line.1138">coprocessorService</a>(byte[] row)</pre> +<pre>public <a href="../../../../../org/apache/hadoop/hbase/ipc/CoprocessorRpcChannel.html" title="interface in org.apache.hadoop.hbase.ipc">CoprocessorRpcChannel</a> <a href="../../../../../src-html/org/apache/hadoop/hbase/client/HTable.html#line.1138">coprocessorService</a>(byte[] row)</pre> <div class="block">Creates and returns a <code>RpcChannel</code> instance connected to the table region containing the specified row. The row given does not actually have to exist. Whichever region would contain the row based on start and end keys will http://git-wip-us.apache.org/repos/asf/hbase-site/blob/33c287c2/devapidocs/org/apache/hadoop/hbase/client/HTableWrapper.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/client/HTableWrapper.html b/devapidocs/org/apache/hadoop/hbase/client/HTableWrapper.html index 97660c4..78d6c4c 100644 --- a/devapidocs/org/apache/hadoop/hbase/client/HTableWrapper.html +++ b/devapidocs/org/apache/hadoop/hbase/client/HTableWrapper.html @@ -293,7 +293,7 @@ implements <a href="../../../../../org/apache/hadoop/hbase/client/Table.html" ti </td> </tr> <tr class="rowColor"> -<td class="colFirst"><code><a href="../../../../../org/apache/hadoop/hbase/ipc/CoprocessorRpcChannel.html" title="class in org.apache.hadoop.hbase.ipc">CoprocessorRpcChannel</a></code></td> +<td class="colFirst"><code><a href="../../../../../org/apache/hadoop/hbase/ipc/CoprocessorRpcChannel.html" title="interface in org.apache.hadoop.hbase.ipc">CoprocessorRpcChannel</a></code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/hadoop/hbase/client/HTableWrapper.html#coprocessorService(byte[])">coprocessorService</a></strong>(byte[] row)</code> <div class="block">Creates and returns a <code>RpcChannel</code> instance connected to the table region containing the specified row.</div> @@ -1192,7 +1192,7 @@ public <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Boolean. <ul class="blockList"> <li class="blockList"> <h4>coprocessorService</h4> -<pre>public <a href="../../../../../org/apache/hadoop/hbase/ipc/CoprocessorRpcChannel.html" title="class in org.apache.hadoop.hbase.ipc">CoprocessorRpcChannel</a> <a href="../../../../../src-html/org/apache/hadoop/hbase/client/HTableWrapper.html#line.243">coprocessorService</a>(byte[] row)</pre> +<pre>public <a href="../../../../../org/apache/hadoop/hbase/ipc/CoprocessorRpcChannel.html" title="interface in org.apache.hadoop.hbase.ipc">CoprocessorRpcChannel</a> <a href="../../../../../src-html/org/apache/hadoop/hbase/client/HTableWrapper.html#line.243">coprocessorService</a>(byte[] row)</pre> <div class="block"><strong>Description copied from interface: <code><a href="../../../../../org/apache/hadoop/hbase/client/Table.html#coprocessorService(byte[])">Table</a></code></strong></div> <div class="block">Creates and returns a <code>RpcChannel</code> instance connected to the table region containing the specified row. The row given does not actually have http://git-wip-us.apache.org/repos/asf/hbase-site/blob/33c287c2/devapidocs/org/apache/hadoop/hbase/client/MasterCallable.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/client/MasterCallable.html b/devapidocs/org/apache/hadoop/hbase/client/MasterCallable.html index 561a395..42bc4f2 100644 --- a/devapidocs/org/apache/hadoop/hbase/client/MasterCallable.html +++ b/devapidocs/org/apache/hadoop/hbase/client/MasterCallable.html @@ -96,7 +96,7 @@ <dl><dt><span class="strong">Type Parameters:</span></dt><dd><code>V</code> - return type</dd></dl> <dl> <dt>All Implemented Interfaces:</dt> -<dd><a href="http://docs.oracle.com/javase/7/docs/api/java/io/Closeable.html?is-external=true" title="class or interface in java.io">Closeable</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang">AutoCloseable</a>, <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallable</a><V></dd> +<dd><a href="http://docs.oracle.com/javase/7/docs/api/java/io/Closeable.html?is-external=true" title="class or interface in java.io">Closeable</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang">AutoCloseable</a>, <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallable</a><V>, <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallableBase</a></dd> </dl> <hr> <br> @@ -173,7 +173,7 @@ implements <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallab <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/hadoop/hbase/client/MasterCallable.html#prepare(boolean)">prepare</a></strong>(boolean reload)</code> -<div class="block">Prepare by setting up any connections to servers, etc., ahead of <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#call(int)"><code>RetryingCallable.call(int)</code></a> invocation.</div> +<div class="block">Prepare by setting up any connections to servers, etc., ahead of call invocation.</div> </td> </tr> <tr class="rowColor"> @@ -185,7 +185,7 @@ implements <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallab <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/hadoop/hbase/client/MasterCallable.html#throwable(java.lang.Throwable,%20boolean)">throwable</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a> t, boolean retrying)</code> -<div class="block">Called when <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#call(int)"><code>RetryingCallable.call(int)</code></a> throws an exception and we are going to retry; take action to +<div class="block">Called when call throws an exception and we are going to retry; take action to make it so we succeed on next call (clear caches, do relookup of locations, etc.).</div> </td> </tr> @@ -269,11 +269,11 @@ implements <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallab <h4>prepare</h4> <pre>public void <a href="../../../../../src-html/org/apache/hadoop/hbase/client/MasterCallable.html#line.37">prepare</a>(boolean reload) throws <a href="http://docs.oracle.com/javase/7/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></pre> -<div class="block"><strong>Description copied from interface: <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#prepare(boolean)">RetryingCallable</a></code></strong></div> -<div class="block">Prepare by setting up any connections to servers, etc., ahead of <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#call(int)"><code>RetryingCallable.call(int)</code></a> invocation.</div> +<div class="block"><strong>Description copied from interface: <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html#prepare(boolean)">RetryingCallableBase</a></code></strong></div> +<div class="block">Prepare by setting up any connections to servers, etc., ahead of call invocation.</div> <dl> <dt><strong>Specified by:</strong></dt> -<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#prepare(boolean)">prepare</a></code> in interface <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallable</a><<a href="../../../../../org/apache/hadoop/hbase/client/MasterCallable.html" title="type parameter in MasterCallable">V</a>></code></dd> +<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html#prepare(boolean)">prepare</a></code> in interface <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallableBase</a></code></dd> <dt><span class="strong">Parameters:</span></dt><dd><code>reload</code> - Set this to true if need to requery locations</dd> <dt><span class="strong">Throws:</span></dt> <dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></code> - e</dd></dl> @@ -304,14 +304,15 @@ implements <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallab <h4>throwable</h4> <pre>public void <a href="../../../../../src-html/org/apache/hadoop/hbase/client/MasterCallable.html#line.48">throwable</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a> t, boolean retrying)</pre> -<div class="block"><strong>Description copied from interface: <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#throwable(java.lang.Throwable,%20boolean)">RetryingCallable</a></code></strong></div> -<div class="block">Called when <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#call(int)"><code>RetryingCallable.call(int)</code></a> throws an exception and we are going to retry; take action to +<div class="block"><strong>Description copied from interface: <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html#throwable(java.lang.Throwable,%20boolean)">RetryingCallableBase</a></code></strong></div> +<div class="block">Called when call throws an exception and we are going to retry; take action to make it so we succeed on next call (clear caches, do relookup of locations, etc.).</div> <dl> <dt><strong>Specified by:</strong></dt> -<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#throwable(java.lang.Throwable,%20boolean)">throwable</a></code> in interface <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallable</a><<a href="../../../../../org/apache/hadoop/hbase/client/MasterCallable.html" title="type parameter in MasterCallable">V</a>></code></dd> -<dd><code>retrying</code> - True if we are in retrying mode (we are not in retrying mode when max - retries == 1; we ARE in retrying mode if retries > 1 even when we are the last attempt)</dd></dl> +<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html#throwable(java.lang.Throwable,%20boolean)">throwable</a></code> in interface <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallableBase</a></code></dd> +<dt><span class="strong">Parameters:</span></dt><dd><code>t</code> - throwable which was thrown</dd><dd><code>retrying</code> - True if we are in retrying mode (we are not in retrying mode when max + retries == 1; we ARE in retrying mode if retries > 1 even when we are the + last attempt)</dd></dl> </li> </ul> <a name="getExceptionMessageAdditionalDetail()"> @@ -323,10 +324,10 @@ implements <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallab <pre>public <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> <a href="../../../../../src-html/org/apache/hadoop/hbase/client/MasterCallable.html#line.52">getExceptionMessageAdditionalDetail</a>()</pre> <dl> <dt><strong>Specified by:</strong></dt> -<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#getExceptionMessageAdditionalDetail()">getExceptionMessageAdditionalDetail</a></code> in interface <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallable</a><<a href="../../../../../org/apache/hadoop/hbase/client/MasterCallable.html" title="type parameter in MasterCallable">V</a>></code></dd> +<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html#getExceptionMessageAdditionalDetail()">getExceptionMessageAdditionalDetail</a></code> in interface <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallableBase</a></code></dd> <dt><span class="strong">Returns:</span></dt><dd>Some details from the implementation that we would like to add to a terminating - exception; i.e. a fatal exception is being thrown ending retries and we might like to add - more implementation-specific detail on to the exception being thrown.</dd></dl> + exception; i.e. a fatal exception is being thrown ending retries and we might like to + add more implementation-specific detail on to the exception being thrown.</dd></dl> </li> </ul> <a name="sleep(long, int)"> @@ -339,7 +340,8 @@ implements <a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallab int tries)</pre> <dl> <dt><strong>Specified by:</strong></dt> -<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html#sleep(long,%20int)">sleep</a></code> in interface <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallable.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallable</a><<a href="../../../../../org/apache/hadoop/hbase/client/MasterCallable.html" title="type parameter in MasterCallable">V</a>></code></dd> +<dd><code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html#sleep(long,%20int)">sleep</a></code> in interface <code><a href="../../../../../org/apache/hadoop/hbase/client/RetryingCallableBase.html" title="interface in org.apache.hadoop.hbase.client">RetryingCallableBase</a></code></dd> +<dt><span class="strong">Parameters:</span></dt><dd><code>pause</code> - time to pause</dd><dd><code>tries</code> - amount of tries until till sleep</dd> <dt><span class="strong">Returns:</span></dt><dd>Suggestion on how much to sleep between retries</dd></dl> </li> </ul> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/33c287c2/devapidocs/org/apache/hadoop/hbase/client/MasterSwitchType.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/client/MasterSwitchType.html b/devapidocs/org/apache/hadoop/hbase/client/MasterSwitchType.html index d202499..c4ef3e8 100644 --- a/devapidocs/org/apache/hadoop/hbase/client/MasterSwitchType.html +++ b/devapidocs/org/apache/hadoop/hbase/client/MasterSwitchType.html @@ -221,7 +221,7 @@ the order they are declared.</div> <ul class="blockList"> <li class="blockList"> <h4>values</h4> -<pre>public static <a href="../../../../../org/apache/hadoop/hbase/client/MasterSwitchType.html" title="enum in org.apache.hadoop.hbase.client">MasterSwitchType</a>[] <a href="../../../../../src-html/org/apache/hadoop/hbase/client/MasterSwitchType.html#line.29">values</a>()</pre> +<pre>public static <a href="../../../../../org/apache/hadoop/hbase/client/MasterSwitchType.html" title="enum in org.apache.hadoop.hbase.client">MasterSwitchType</a>[] <a href="../../../../../src-html/org/apache/hadoop/hbase/client/MasterSwitchType.html#line.26">values</a>()</pre> <div class="block">Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows: @@ -238,7 +238,7 @@ for (MasterSwitchType c : MasterSwitchType.values()) <ul class="blockListLast"> <li class="blockList"> <h4>valueOf</h4> -<pre>public static <a href="../../../../../org/apache/hadoop/hbase/client/MasterSwitchType.html" title="enum in org.apache.hadoop.hbase.client">MasterSwitchType</a> <a href="../../../../../src-html/org/apache/hadoop/hbase/client/MasterSwitchType.html#line.29">valueOf</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name)</pre> +<pre>public static <a href="../../../../../org/apache/hadoop/hbase/client/MasterSwitchType.html" title="enum in org.apache.hadoop.hbase.client">MasterSwitchType</a> <a href="../../../../../src-html/org/apache/hadoop/hbase/client/MasterSwitchType.html#line.26">valueOf</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name)</pre> <div class="block">Returns the enum constant of this type with the specified name. The string must match <i>exactly</i> an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are