Interface TransportFuture<V>

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

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

    Modifier and Type
    Method
    Description
    Waits if necessary for the computation to complete, and then retrieves its result.
    txGet(long timeout, TimeUnit 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.Future

    cancel, get, get, isCancelled, isDone
  • Method Details

    • txGet

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

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