Class FutureValue<V>

  • All Implemented Interfaces:
    java.util.concurrent.Future<V>

    public class FutureValue<V>
    extends java.lang.Object
    implements java.util.concurrent.Future<V>
    Author:
    pugh
    • Constructor Summary

      Constructors 
      Constructor Description
      FutureValue()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean cancel​(boolean arg0)  
      V get()  
      V get​(long arg0, java.util.concurrent.TimeUnit arg1)  
      V get​(long arg0, java.util.concurrent.TimeUnit arg1, V valueOnTimeout)  
      boolean isCancelled()  
      boolean isDone()  
      void set​(V value)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • FutureValue

        public FutureValue()
    • Method Detail

      • cancel

        public boolean cancel​(boolean arg0)
        Specified by:
        cancel in interface java.util.concurrent.Future<V>
      • get

        public V get()
              throws java.lang.InterruptedException
        Specified by:
        get in interface java.util.concurrent.Future<V>
        Throws:
        java.lang.InterruptedException
      • get

        public V get​(long arg0,
                     java.util.concurrent.TimeUnit arg1)
              throws java.lang.InterruptedException,
                     java.util.concurrent.TimeoutException
        Specified by:
        get in interface java.util.concurrent.Future<V>
        Throws:
        java.lang.InterruptedException
        java.util.concurrent.TimeoutException
      • get

        public V get​(long arg0,
                     java.util.concurrent.TimeUnit arg1,
                     V valueOnTimeout)
              throws java.lang.InterruptedException
        Throws:
        java.lang.InterruptedException
      • isCancelled

        public boolean isCancelled()
        Specified by:
        isCancelled in interface java.util.concurrent.Future<V>
      • isDone

        public boolean isDone()
        Specified by:
        isDone in interface java.util.concurrent.Future<V>
      • set

        public void set​(V value)