java.lang.Object
java.util.concurrent.AbstractExecutorService
- All Implemented Interfaces:
- Executor, ExecutorService
- Direct Known Subclasses:
- ThreadPoolExecutor
- See Also:
Future
, FutureTask
public AbstractExecutorService()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public <T> List<Future<T>> invokeAll(Collection<Callable<T>> tasks)
throws InterruptedException
- See Also:
- ExecutorService,
Future.isDone()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public <T> List<Future<T>> invokeAll(Collection<Callable<T>> tasks,
long timeout,
TimeUnit unit)
throws InterruptedException
- See Also:
- ExecutorService,
Future.isDone()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public <T> T invokeAny(Collection<Callable<T>> tasks)
throws InterruptedException,
ExecutionException
- See Also:
- ExecutorService
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public <T> T invokeAny(Collection<Callable<T>> tasks,
long timeout,
TimeUnit unit)
throws InterruptedException,
ExecutionException,
TimeoutException
- See Also:
- ExecutorService
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public Future<?> submit(Runnable task)
- See Also:
- ExecutorService
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public <T> Future<T> submit(Runnable task,
T result)
- See Also:
- ExecutorService
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public <T> Future<T> submit(Callable<T> task)
- See Also:
- ExecutorService,
PrivilegedAction
, Executors
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples