KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > util > concurrent > Future

java.util.concurrent
Interface Future<V>

All Known Subinterfaces:
ScheduledFuture<V>
All Known Implementing Classes:
FutureTask
See Also:
Top Examples, Executor

boolean cancel(boolean mayInterruptIfRunning)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


V get()
      throws InterruptedException,
             ExecutionException
See Also:
CancellationException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


V get(long timeout,
      TimeUnit unit)
      throws InterruptedException,
             ExecutionException,
             TimeoutException
See Also:
CancellationException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


boolean isCancelled()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


boolean isDone()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags