GNU Classpath (0.97.2) | |
Frames | No Frames |
Classes implementing java.util.concurrent.ExecutorService | |
class | Provides default implementations of ExecutorService
execution methods. |
class | A ThreadPoolExecutor that can additionally schedule
commands to run after a given delay, or to execute
periodically. |
class | An ExecutorService that executes each submitted task using
one of possibly several pooled threads, normally configured
using Executors factory methods.
|
Methods with parameter type java.util.concurrent.ExecutorService | |
ExecutorService | Returns an object that delegates all defined ExecutorService methods to the given executor, but not any
other methods that might otherwise be accessible using
casts. |
Methods with return type java.util.concurrent.ExecutorService | |
ExecutorService | Creates a thread pool that creates new threads as needed, but
will reuse previously constructed threads when they are
available. |
ExecutorService | Creates a thread pool that creates new threads as needed, but
will reuse previously constructed threads when they are
available, and uses the provided
ThreadFactory to create new threads when needed.
|
ExecutorService | Executors.newFixedThreadPool(int nThreads) Creates a thread pool that reuses a fixed number of threads
operating off a shared unbounded queue. |
ExecutorService | Creates a thread pool that reuses a fixed number of threads
operating off a shared unbounded queue, using the provided
ThreadFactory to create new threads when needed. |
ExecutorService | Creates an Executor that uses a single worker thread operating
off an unbounded queue. |
ExecutorService | Creates an Executor that uses a single worker thread operating
off an unbounded queue, and uses the provided ThreadFactory to
create a new thread when needed. |
ExecutorService | Returns an object that delegates all defined ExecutorService methods to the given executor, but not any
other methods that might otherwise be accessible using
casts. |
GNU Classpath (0.97.2) |