Interface TransportFuture<V>

All Superinterfaces:
<V>
All Known Implementing Classes:
PlainTransportFuture

public interface TransportFuture<V> extends <V>
  • Method Summary

    Modifier and Type
    Method
    Description
    Waits if necessary for the computation to complete, and then retrieves its result.
    txGet​(long timeout,  unit)
    Waits if necessary for at most the given time for the computation to complete, and then retrieves its result, if available.

    Methods inherited from interface java.util.concurrent.

    , , , ,
  • Method Details

    • txGet

      V txGet()
      Waits if necessary for the computation to complete, and then retrieves its result.
    • txGet

      V txGet(long timeout,  unit)
      Waits if necessary for at most the given time for the computation to complete, and then retrieves its result, if available.