Package org.elasticsearch.action.support
Class AdapterActionFuture<T,L>
- java.lang.Object
-
- org.elasticsearch.common.util.concurrent.BaseFuture<T>
-
- org.elasticsearch.action.support.AdapterActionFuture<T,L>
-
- All Implemented Interfaces:
java.util.concurrent.Future<T>,ActionFuture<T>,ActionListener<L>
- Direct Known Subclasses:
PlainActionFuture,PlainListenableActionFuture
public abstract class AdapterActionFuture<T,L> extends BaseFuture<T> implements ActionFuture<T>, ActionListener<L>
-
-
Constructor Summary
Constructors Constructor Description AdapterActionFuture()
-
Method Summary
Modifier and Type Method Description TactionGet()Similar toFuture.get(), just catching theInterruptedExceptionand throwing anIllegalStateExceptioninstead.TactionGet(long timeoutMillis)Similar toFuture.get(long, java.util.concurrent.TimeUnit), just catching theInterruptedExceptionand throwing anIllegalStateExceptioninstead.TactionGet(long timeout, java.util.concurrent.TimeUnit unit)Similar toFuture.get(long, java.util.concurrent.TimeUnit), just catching theInterruptedExceptionand throwing anIllegalStateExceptioninstead.TactionGet(java.lang.String timeout)Similar toFuture.get(long, java.util.concurrent.TimeUnit), just catching theInterruptedExceptionand throwing anIllegalStateExceptioninstead.TactionGet(TimeValue timeout)Similar toFuture.get(long, java.util.concurrent.TimeUnit), just catching theInterruptedExceptionand throwing anIllegalStateExceptioninstead.protected abstract Tconvert(L listenerResponse)voidonFailure(java.lang.Exception e)A failure caused by an exception at some phase of the task.voidonResponse(L result)Handle action response.-
Methods inherited from class org.elasticsearch.common.util.concurrent.BaseFuture
blockingAllowed, cancel, done, get, get, interruptTask, isCancelled, isDone, set, setException
-
-
-
-
Method Detail
-
actionGet
public T actionGet()
Description copied from interface:ActionFutureSimilar toFuture.get(), just catching theInterruptedExceptionand throwing anIllegalStateExceptioninstead. Also catchesExecutionExceptionand throws the actual cause instead.- Specified by:
actionGetin interfaceActionFuture<T>
-
actionGet
public T actionGet(java.lang.String timeout)
Description copied from interface:ActionFutureSimilar toFuture.get(long, java.util.concurrent.TimeUnit), just catching theInterruptedExceptionand throwing anIllegalStateExceptioninstead. Also catchesExecutionExceptionand throws the actual cause instead.- Specified by:
actionGetin interfaceActionFuture<T>
-
actionGet
public T actionGet(long timeoutMillis)
Description copied from interface:ActionFutureSimilar toFuture.get(long, java.util.concurrent.TimeUnit), just catching theInterruptedExceptionand throwing anIllegalStateExceptioninstead. Also catchesExecutionExceptionand throws the actual cause instead.- Specified by:
actionGetin interfaceActionFuture<T>- Parameters:
timeoutMillis- Timeout in millis
-
actionGet
public T actionGet(TimeValue timeout)
Description copied from interface:ActionFutureSimilar toFuture.get(long, java.util.concurrent.TimeUnit), just catching theInterruptedExceptionand throwing anIllegalStateExceptioninstead. Also catchesExecutionExceptionand throws the actual cause instead.- Specified by:
actionGetin interfaceActionFuture<T>
-
actionGet
public T actionGet(long timeout, java.util.concurrent.TimeUnit unit)
Description copied from interface:ActionFutureSimilar toFuture.get(long, java.util.concurrent.TimeUnit), just catching theInterruptedExceptionand throwing anIllegalStateExceptioninstead. Also catchesExecutionExceptionand throws the actual cause instead.- Specified by:
actionGetin interfaceActionFuture<T>
-
onResponse
public void onResponse(L result)
Description copied from interface:ActionListenerHandle action response. This response may constitute a failure or a success but it is up to the listener to make that decision.- Specified by:
onResponsein interfaceActionListener<T>
-
onFailure
public void onFailure(java.lang.Exception e)
Description copied from interface:ActionListenerA failure caused by an exception at some phase of the task.- Specified by:
onFailurein interfaceActionListener<T>
-
-