Use 
PREV   NEXT      All Classes   All Packages
FlexDoc/Javadoc 2.0
Demo Java Doc

Uses of Interface
java.util.concurrent.ExecutorService
Packages that use ExecutorService
Utility classes commonly useful in concurrent programming.
interface
An ExecutorService that can schedule commands to run after a given delay, or to execute periodically.
Classes in java.util.concurrent that implement ExecutorService
abstract class
Provides default implementations of ExecutorService execution methods.
class
An ExecutorService for running ForkJoinTasks.
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 in java.util.concurrent that return ExecutorService
Creates a thread pool that creates new threads as needed, but will reuse previously constructed threads when they are available.
Executors.newCachedThreadPool(ThreadFactory threadFactory)
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.
Executors.newFixedThreadPool(int nThreads)
Creates a thread pool that reuses a fixed number of threads operating off a shared unbounded queue.
Executors.newFixedThreadPool(int nThreads, ThreadFactory threadFactory)
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.
Creates an Executor that uses a single worker thread operating off an unbounded queue.
Executors.newSingleThreadExecutor(ThreadFactory threadFactory)
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.
Creates a work-stealing thread pool using the number of available processors as its target parallelism level.
Executors.newWorkStealingPool(int parallelism)
Creates a thread pool that maintains enough threads to support the given parallelism level, and may use multiple queues to reduce contention.
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 in java.util.concurrent with parameters of type 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.

 Use 
PREV   NEXT      All Classes   All Packages
FlexDoc/Javadoc 2.0
Demo Java Doc

Java API documentation generated with FlexDoc/Javadoc 2.0 using JavadocClassic 3.0 template set.
FlexDoc/Javadoc is a template-driven programming tool for rapid development of any Javadoc-based Java API documentation generators (i.e. doclets). If you need to customize your Javadoc without writing a full-blown doclet from scratch, FlexDoc/Javadoc may be the only tool able to help you! Find out more at www.flexdoc.xyz