Package com.sun.xml.ws.util
Class CompletedFuture<T>
- java.lang.Object
-
- com.sun.xml.ws.util.CompletedFuture<T>
-
-
Constructor Summary
Constructors Constructor Description CompletedFuture(T v, Throwable re)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancancel(boolean mayInterruptIfRunning)Tget()Tget(long timeout, TimeUnit unit)booleanisCancelled()booleanisDone()
-
-
-
Method Detail
-
cancel
public boolean cancel(boolean mayInterruptIfRunning)
-
isCancelled
public boolean isCancelled()
- Specified by:
isCancelledin interfaceFuture<T>
-
get
public T get() throws ExecutionException
- Specified by:
getin interfaceFuture<T>- Throws:
ExecutionException
-
get
public T get(long timeout, TimeUnit unit) throws ExecutionException
- Specified by:
getin interfaceFuture<T>- Throws:
ExecutionException
-
-