Uses of Interface
java.util.concurrent.ExecutorService
| Package | Description |
|---|---|
| java.util.concurrent |
Utility classes commonly useful in concurrent programming.
|
-
Uses of ExecutorService in java.util.concurrent
Subinterfaces of ExecutorService in java.util.concurrent Modifier and Type Interface Description interfaceScheduledExecutorServiceAnExecutorServicethat can schedule commands to run after a given delay, or to execute periodically.Classes in java.util.concurrent that implement ExecutorService Modifier and Type Class Description classAbstractExecutorServiceProvides default implementations ofExecutorServiceexecution methods.classForkJoinPoolAnExecutorServicefor runningForkJoinTasks.classScheduledThreadPoolExecutorAThreadPoolExecutorthat can additionally schedule commands to run after a given delay, or to execute periodically.classThreadPoolExecutorAnExecutorServicethat executes each submitted task using one of possibly several pooled threads, normally configured usingExecutorsfactory methods.Methods in java.util.concurrent that return ExecutorService Modifier and Type Method Description static ExecutorServiceExecutors. newCachedThreadPool()Creates a thread pool that creates new threads as needed, but will reuse previously constructed threads when they are available.static ExecutorServiceExecutors. 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.static ExecutorServiceExecutors. newFixedThreadPool(int nThreads)Creates a thread pool that reuses a fixed number of threads operating off a shared unbounded queue.static ExecutorServiceExecutors. 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.static ExecutorServiceExecutors. newSingleThreadExecutor()Creates an Executor that uses a single worker thread operating off an unbounded queue.static ExecutorServiceExecutors. 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.static ExecutorServiceExecutors. newWorkStealingPool()Creates a work-stealing thread pool using allavailable processorsas its target parallelism level.static ExecutorServiceExecutors. 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.static ExecutorServiceExecutors. unconfigurableExecutorService(ExecutorService executor)Returns an object that delegates all definedExecutorServicemethods 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 Modifier and Type Method Description static ExecutorServiceExecutors. unconfigurableExecutorService(ExecutorService executor)Returns an object that delegates all definedExecutorServicemethods to the given executor, but not any other methods that might otherwise be accessible using casts.