Interface ActionFuture<T>

All Superinterfaces:
<T>
All Known Implementing Classes:
AdapterActionFuture, ListenableActionFuture, PlainActionFuture

public interface ActionFuture<T> extends <T>
An extension to allowing for simplified "get" operations.
  • Method Summary

    Modifier and Type
    Method
    Description
    Similar to , just catching the and throwing an instead.
    actionGet​(long timeoutMillis)
    Similar to , just catching the and throwing an instead.
    actionGet​(long timeout,  unit)
    Similar to , just catching the and throwing an instead.
     timeout)
    Similar to , just catching the and throwing an instead.
    actionGet​(org.elasticsearch.core.TimeValue timeout)
    Similar to , just catching the and throwing an instead.

    Methods inherited from interface java.util.concurrent.

    , , , ,
  • Method Details

    • actionGet

      T actionGet()
      Similar to , just catching the and throwing an instead. Also catches and throws the actual cause instead.
    • actionGet

       timeout)
      Similar to , just catching the and throwing an instead. Also catches and throws the actual cause instead.
    • actionGet

      T actionGet(long timeoutMillis)
      Similar to , just catching the and throwing an instead. Also catches and throws the actual cause instead.
      Parameters:
      timeoutMillis - Timeout in millis
    • actionGet

      T actionGet(long timeout,  unit)
      Similar to , just catching the and throwing an instead. Also catches and throws the actual cause instead.
    • actionGet

      T actionGet(org.elasticsearch.core.TimeValue timeout)
      Similar to , just catching the and throwing an instead. Also catches and throws the actual cause instead.