API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.util.concurrent. AbstractExecutorService View Source
Author(s)
Doug Lea
Since
1.5
Version
Serial
Hierarchy
 Object
      AbstractExecutorService
Implements
 ExecutorService
Subclasses
Description
publicabstract abstract class AbstractExecutorService
  Provides default implementations of ExecutorService execution methods.
See also:   
Constructors
public AbstractExecutorService ()
Methods
Hide/Show inherited methods
public List<Future< T>> invokeAll (Collection<Callable> tasks) throws InterruptedException [Specified in ExecutorService]
public List<Future< T>> invokeAll (Collection<Callable> tasks, long timeout, TimeUnit unit) throws InterruptedException [Specified in ExecutorService]
public T invokeAny (Collection<Callable> tasks) throws InterruptedException ExecutionException [Specified in ExecutorService]
public T invokeAny (Collection<Callable> tasks, long timeout, TimeUnit unit) throws InterruptedException ExecutionException TimeoutException [Specified in ExecutorService]
protected RunnableFuture< T> newTaskFor (Callable< T> callable)
  Returns a RunnableFuture for the given callable task.
protected RunnableFuture< T> newTaskFor (Runnable runnable, T value)
  Returns a RunnableFuture for the given runnable and default value.
public Future< T> submit (Callable< T> task) [Specified in ExecutorService]
public Future<Object> submit (Runnable task) [Specified in ExecutorService]
public Future< T> submit (Runnable task, T result) [Specified in ExecutorService]
Fields
Hide/Show inherited fields
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar