| java.util.concurrent.RunnableFuture
RunnableFuture | public interface RunnableFuture extends Runnable,Future<V>(Code) | | A
Future that is
Runnable . Successful execution of
the run method causes completion of the Future
and allows access to its results.
See Also: FutureTask See Also: Executor since: 1.6 author: Doug Lea< Parameters: V - > The result type returned by this Future's get method |
Method Summary | |
void | run() Sets this Future to the result of its computation
unless it has been cancelled. |
run | void run()(Code) | | Sets this Future to the result of its computation
unless it has been cancelled.
|
|
|