com.google.appengine.api.utils
Class FutureWrapper<K,V>
java.lang.Object
com.google.appengine.api.utils.FutureWrapper<K,V>
- All Implemented Interfaces:
- java.util.concurrent.Future<V>
public abstract class FutureWrapper<K,V>
- extends java.lang.Object
- implements java.util.concurrent.Future<V>
FutureWrapper
is a simple Future
that wraps a
parent Future
.
Constructor Summary |
FutureWrapper(java.util.concurrent.Future<K> parent)
|
Method Summary |
boolean |
cancel(boolean mayInterruptIfRunning)
|
V |
get()
|
V |
get(long timeout,
java.util.concurrent.TimeUnit unit)
|
boolean |
isCancelled()
|
boolean |
isDone()
|
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
FutureWrapper
public FutureWrapper(java.util.concurrent.Future<K> parent)
cancel
public boolean cancel(boolean mayInterruptIfRunning)
- Specified by:
cancel
in interface java.util.concurrent.Future<V>
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>
get
public V get()
throws java.lang.InterruptedException,
java.util.concurrent.ExecutionException
- Specified by:
get
in interface java.util.concurrent.Future<V>
- Throws:
java.lang.InterruptedException
java.util.concurrent.ExecutionException
get
public V get(long timeout,
java.util.concurrent.TimeUnit unit)
throws java.lang.InterruptedException,
java.util.concurrent.TimeoutException,
java.util.concurrent.ExecutionException
- Specified by:
get
in interface java.util.concurrent.Future<V>
- Throws:
java.lang.InterruptedException
java.util.concurrent.TimeoutException
java.util.concurrent.ExecutionException