AutoCloseable, Executor, ExecutorService, ScheduledExecutorServicepublic class ForkJoinPool extends AbstractExecutorService implements ScheduledExecutorService
ExecutorService for running ForkJoinTasks. A ForkJoinPool provides the entry point for submissions from non-ForkJoinTask clients, as well as management and monitoring operations. A ForkJoinPool differs from other kinds of ExecutorService mainly by virtue of employing work-stealing: all threads in the pool attempt to find and execute tasks submitted to the pool and/or created by other active tasks (eventually blocking waiting for work if none exist). This enables efficient processing when most tasks spawn other subtasks (as do most ForkJoinTasks), as well as when many small tasks are submitted to the pool from external clients. Especially when setting asyncMode to true in constructors,
ForkJoinPools may also be appropriate for use with event-style tasks that are never joined. All worker threads are initialized with Thread.isDaemon() set true.
A static commonPool() is available and appropriate for most applications. The common pool is used by any ForkJoinTask that is not explicitly submitted to a specified pool. Using the common pool normally reduces resource usage (its threads are slowly reclaimed during periods of non-use, and reinstated upon subsequent use).
For applications that require separate or custom pools, a
ForkJoinPool may be constructed with a given target parallelism level; by default, equal to the number of available processors. The pool attempts to maintain enough active (or available) threads by dynamically adding, suspending, or resuming internal worker threads, even if some tasks are stalled waiting to join others. However, no such adjustments are guaranteed in the face of blocked I/O or other unmanaged synchronization. The nested ForkJoinPool.ManagedBlocker interface enables extension of the kinds of synchronization accommodated. The default policies may be overridden using a constructor with parameters corresponding to those documented in class ThreadPoolExecutor.
In addition to execution and lifecycle control methods, this class provides status check methods (for example getStealCount()) that are intended to aid in developing, tuning, and monitoring fork/join applications. Also, method toString() returns indications of pool state in a convenient form for informal monitoring.
As is the case with other ExecutorServices, there are three main task execution methods summarized in the following table. These are designed to be used primarily by clients not already engaged in fork/join computations in the current pool. The main forms of these methods accept instances of ForkJoinTask, but overloaded forms also allow mixed execution of plain
Runnable- or Callable- based activities as well. However, tasks that are already executing in a pool should normally instead use the within-computation forms listed in the table unless using async event-style tasks that are not usually joined, in which case there is little difference among choice of methods.
| Call from non-fork/join clients | Call from within fork/join computations | |
|---|---|---|
| Arrange async execution | execute(ForkJoinTask)
| ForkJoinTask.fork()
|
| Await and obtain result | invoke(ForkJoinTask)
| ForkJoinTask.invoke()
|
| Arrange exec and obtain Future | submit(ForkJoinTask)
| ForkJoinTask.fork() (ForkJoinTasks are Futures) |
Additionally, this class supports ScheduledExecutorService methods to delay or periodically execute tasks, as well as method submitWithTimeout(Callable, long, TimeUnit, Consumer) to cancel tasks that take too long. The scheduled functions or actions may create and invoke other ForkJoinTasks. Delayed actions become enabled and behave as ordinary submitted tasks when their delays elapse. Scheduling methods return ForkJoinTasks that implement the ScheduledFuture interface. Resource exhaustion encountered after initial submission results in task cancellation. When time-based methods are used, shutdown policies match the default policies of class ScheduledThreadPoolExecutor: upon shutdown(), existing periodic tasks will not re-execute, and the pool terminates when quiescent and existing delayed tasks complete. Method cancelDelayedTasksOnShutdown() may be used to disable all delayed tasks upon shutdown, and method shutdownNow() may be used to instead unconditionally initiate pool termination. Monitoring methods such as getQueuedTaskCount() do not include scheduled tasks that are not yet enabled to execute, which are reported separately by method getDelayedTaskCount().
The parameters used to construct the common pool may be controlled by setting the following system properties:
java.util.concurrent.ForkJoinPool.common.parallelism - the parallelism level, a non-negative integer. Usage is discouraged. Use setParallelism(int) instead. java.util.concurrent.ForkJoinPool.common.threadFactory - the class name of a ForkJoinPool.ForkJoinWorkerThreadFactory. The system class loader is used to load this class. java.util.concurrent.ForkJoinPool.common.exceptionHandler - the class name of a Thread.UncaughtExceptionHandler. The system class loader is used to load this class. java.util.concurrent.ForkJoinPool.common.maximumSpares - the maximum number of allowed extra threads to maintain target parallelism (default 256). null, in which case some tasks may never execute. While possible, it is strongly discouraged to set the parallelism property to zero, which may be internally overridden in the presence of intrinsically async tasks.
IllegalArgumentException. Also, this implementation rejects submitted tasks (that is, by throwing RejectedExecutionException) only when the pool is shut down or internal resources have been exhausted.| Modifier and Type | Class | Description |
|---|---|---|
static interface |
ForkJoinPool.ForkJoinWorkerThreadFactory |
Factory for creating new ForkJoinWorkerThreads. |
static interface |
ForkJoinPool.ManagedBlocker |
Interface for extending managed parallelism for tasks running in ForkJoinPools. |
| Modifier and Type | Field | Description |
|---|---|---|
static final ForkJoinPool.ForkJoinWorkerThreadFactory |
defaultForkJoinWorkerThreadFactory |
Creates a new ForkJoinWorkerThread. |
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
awaitQuiescence |
If called by a ForkJoinTask operating in this pool, equivalent in effect to ForkJoinTask.helpQuiesce(). |
boolean |
awaitTermination |
Blocks until all tasks have completed execution after a shutdown request, or the timeout occurs, or the current thread is interrupted, whichever happens first. |
void |
cancelDelayedTasksOnShutdown() |
Arranges that scheduled tasks that are not executing and have not already been enabled for execution will not be executed and will be cancelled upon shutdown() (unless this pool is the commonPool() which never shuts down). |
void |
close() |
Unless this is the commonPool(), initiates an orderly shutdown in which previously submitted tasks are executed, but no new tasks will be accepted, and waits until all tasks have completed execution and the executor has terminated. |
static ForkJoinPool |
commonPool() |
Returns the common pool instance. |
protected int |
drainTasksTo |
Removes all available unexecuted submitted and forked tasks from scheduling queues and adds them to the given collection, without altering their execution status. |
void |
execute |
Executes the given command at some time in the future. |
void |
execute |
Arranges for (asynchronous) execution of the given task. |
<T> ForkJoinTask |
externalSubmit |
Submits the given task as if submitted from a non- ForkJoinTask client. |
int |
getActiveThreadCount() |
Returns an estimate of the number of threads that are currently stealing or executing tasks. |
boolean |
getAsyncMode() |
Returns true if this pool uses local first-in-first-out scheduling mode for forked tasks that are never joined. |
static int |
getCommonPoolParallelism() |
Returns the targeted parallelism level of the common pool. |
long |
getDelayedTaskCount() |
Returns an estimate of the number of delayed (including periodic) tasks scheduled in this pool that are not yet ready to submit for execution. |
ForkJoinPool.ForkJoinWorkerThreadFactory |
getFactory() |
Returns the factory used for constructing new workers. |
int |
getParallelism() |
Returns the targeted parallelism level of this pool. |
int |
getPoolSize() |
Returns the number of worker threads that have started but not yet terminated. |
int |
getQueuedSubmissionCount() |
Returns an estimate of the number of tasks submitted to this pool that have not yet begun executing. |
long |
getQueuedTaskCount() |
Returns an estimate of the total number of tasks currently held in queues by worker threads (but not including tasks submitted to the pool that have not begun executing). |
int |
getRunningThreadCount() |
Returns an estimate of the number of worker threads that are not blocked waiting to join tasks or for other managed synchronization. |
long |
getStealCount() |
Returns an estimate of the total number of completed tasks that were executed by a thread other than their submitter. |
Thread.UncaughtExceptionHandler |
getUncaughtExceptionHandler() |
Returns the handler for internal worker threads that terminate due to unrecoverable errors encountered while executing tasks. |
boolean |
hasQueuedSubmissions() |
Returns true if there are any tasks submitted to this pool that have not yet begun executing. |
<T> T |
invoke |
Performs the given task, returning its result upon completion. |
<T> List |
invokeAll |
Executes the given tasks, returning a list of Futures holding their status and results when all complete. |
<T> List |
invokeAll |
Executes the given tasks, returning a list of Futures holding their status and results when all complete or the timeout expires, whichever happens first. |
<T> List |
invokeAllUninterruptibly |
Uninterrupible version of invokeAll. |
<T> T |
invokeAny |
Executes the given tasks, returning the result of one that has completed successfully (i.e., without throwing an exception), if any do. |
<T> T |
invokeAny |
Executes the given tasks, returning the result of one that has completed successfully (i.e., without throwing an exception), if any do before the given timeout elapses. |
boolean |
isQuiescent() |
Returns true if all worker threads are currently idle. |
boolean |
isShutdown() |
Returns true if this pool has been shut down. |
boolean |
isTerminated() |
Returns true if all tasks have completed following shut down. |
boolean |
isTerminating() |
Returns true if the process of termination has commenced but not yet completed. |
<T> ForkJoinTask |
lazySubmit |
Submits the given task without guaranteeing that it will eventually execute in the absence of available active threads. |
static void |
managedBlock |
Runs the given possibly blocking task. |
protected ForkJoinTask |
pollSubmission() |
Removes and returns the next unexecuted submission if one is available. |
ScheduledFuture |
schedule |
Submits a one-shot task that becomes enabled after the given delay. |
<V> ScheduledFuture |
schedule |
Submits a value-returning one-shot task that becomes enabled after the given delay. |
ScheduledFuture |
scheduleAtFixedRate |
Submits a periodic action that becomes enabled first after the given initial delay, and subsequently with the given period; that is, executions will commence after initialDelay, then initialDelay + period, then initialDelay + 2 * period, and so on. |
ScheduledFuture |
scheduleWithFixedDelay |
Submits a periodic action that becomes enabled first after the given initial delay, and subsequently with the given delay between the termination of one execution and the commencement of the next. |
int |
setParallelism |
Changes the target parallelism of this pool, controlling the future creation, use, and termination of worker threads. |
void |
shutdown() |
Possibly initiates an orderly shutdown in which previously submitted tasks are executed, but no new tasks will be accepted. |
List |
shutdownNow() |
Possibly attempts to cancel and/or stop all tasks, and reject all subsequently submitted tasks. |
ForkJoinTask |
submit |
Submits a Runnable task for execution and returns a Future representing that task. |
<T> ForkJoinTask |
submit |
Submits a Runnable task for execution and returns a Future representing that task. |
<T> ForkJoinTask |
submit |
Submits a value-returning task for execution and returns a Future representing the pending results of the task. |
<T> ForkJoinTask |
submit |
Submits a ForkJoinTask for execution. |
<V> ForkJoinTask |
submitWithTimeout |
Submits a task executing the given function, cancelling the task or performing a given timeoutAction if not completed within the given timeout period. |
String |
toString() |
Returns a string identifying this pool, as well as its state, including indications of run state, parallelism level, and worker and task counts. |
invokeAll, invokeAll, invokeAny, invokeAny, newTaskFor, newTaskFor
public static final ForkJoinPool.ForkJoinWorkerThreadFactory defaultForkJoinWorkerThreadFactory
public ForkJoinPool()
ForkJoinPool with parallelism equal to Runtime.availableProcessors(), using defaults for all other parameters (see ForkJoinPool(int, ForkJoinWorkerThreadFactory, UncaughtExceptionHandler, boolean, int, int, int, Predicate, long, TimeUnit)).public ForkJoinPool(int parallelism)
ForkJoinPool with the indicated parallelism level, using defaults for all other parameters (see ForkJoinPool(int, ForkJoinWorkerThreadFactory, UncaughtExceptionHandler, boolean, int, int, int, Predicate, long, TimeUnit)).parallelism - the parallelism levelIllegalArgumentException - if parallelism less than or equal to zero, or greater than implementation limitpublic ForkJoinPool(int parallelism, ForkJoinPool.ForkJoinWorkerThreadFactory factory, Thread.UncaughtExceptionHandler handler, boolean asyncMode)
ForkJoinPool with the given parameters (using defaults for others -- see ForkJoinPool(int, ForkJoinWorkerThreadFactory, UncaughtExceptionHandler, boolean, int, int, int, Predicate, long, TimeUnit)).parallelism - the parallelism level. For default value, use Runtime.availableProcessors().factory - the factory for creating new threads. For default value, use defaultForkJoinWorkerThreadFactory.handler - the handler for internal worker threads that terminate due to unrecoverable errors encountered while executing tasks. For default value, use null.asyncMode - if true, establishes local first-in-first-out scheduling mode for forked tasks that are never joined. This mode may be more appropriate than default locally stack-based mode in applications in which worker threads only process event-style asynchronous tasks. For default value, use false.IllegalArgumentException - if parallelism less than or equal to zero, or greater than implementation limitNullPointerException - if the factory is nullpublic ForkJoinPool(int parallelism, ForkJoinPool.ForkJoinWorkerThreadFactory factory, Thread.UncaughtExceptionHandler handler, boolean asyncMode, int corePoolSize, int maximumPoolSize, int minimumRunnable, Predicate<? super ForkJoinPool> saturate, long keepAliveTime, TimeUnit unit)
ForkJoinPool with the given parameters.parallelism - the parallelism level. For default value, use Runtime.availableProcessors().factory - the factory for creating new threads. For default value, use defaultForkJoinWorkerThreadFactory.handler - the handler for internal worker threads that terminate due to unrecoverable errors encountered while executing tasks. For default value, use null.asyncMode - if true, establishes local first-in-first-out scheduling mode for forked tasks that are never joined. This mode may be more appropriate than default locally stack-based mode in applications in which worker threads only process event-style asynchronous tasks. For default value, use
false.corePoolSize - ignored: used in previous releases of this class but no longer applicable. Using 0 maintains compatibility across releases.maximumPoolSize - the maximum number of threads allowed. When the maximum is reached, attempts to replace blocked threads fail. (However, because creation and termination of different threads may overlap, and may be managed by the given thread factory, this value may be transiently exceeded.) To arrange the same value as is used by default for the common pool, use 256 plus the parallelism level. (By default, the common pool allows a maximum of 256 spare threads.) Using a value (for example
Integer.MAX_VALUE) larger than the implementation's total thread limit has the same effect as using this limit (which is the default).minimumRunnable - the minimum allowed number of core threads not blocked by a join or ForkJoinPool.ManagedBlocker. To ensure progress, when too few unblocked threads exist and unexecuted tasks may exist, new threads are constructed, up to the given maximumPoolSize. For the default value, use
1, that ensures liveness. A larger value might improve throughput in the presence of blocked activities, but might not, due to increased overhead. A value of zero may be acceptable when submitted tasks cannot have dependencies requiring additional threads.saturate - if non-null, a predicate invoked upon attempts to create more than the maximum total allowed threads. By default, when a thread is about to block on a join or ForkJoinPool.ManagedBlocker, but cannot be replaced because the maximumPoolSize would be exceeded, a RejectedExecutionException is thrown. But if this predicate returns true, then no exception is thrown, so the pool continues to operate with fewer than the target number of runnable threads, which might not ensure progress.keepAliveTime - the elapsed time since last use before a thread is terminated (and then later replaced if needed). For the default value, use 60, TimeUnit.SECONDS.unit - the time unit for the keepAliveTime argumentIllegalArgumentException - if parallelism is less than or equal to zero, or is greater than implementation limit, or if maximumPoolSize is less than parallelism, of if the keepAliveTime is less than or equal to zero.NullPointerException - if the factory is nullpublic static ForkJoinPool commonPool()
shutdown() or shutdownNow(). However this pool and any ongoing processing are automatically terminated upon program System.exit(int). Any program that relies on asynchronous task processing to complete before program termination should invoke commonPool().awaitQuiescence, before exit.public <T> T invoke(ForkJoinTask<T> task)
ex.printStackTrace()) of both the current thread as well as the thread actually encountering the exception; minimally only the latter.T - the type of the task's resulttask - the taskNullPointerException - if the task is nullRejectedExecutionException - if the task cannot be scheduled for executionpublic void execute(ForkJoinTask<?> task)
task - the taskNullPointerException - if the task is nullRejectedExecutionException - if the task cannot be scheduled for executionpublic void execute(Runnable task)
ExecutorExecutor implementation.execute in interface Executor
task - the runnable taskNullPointerException - if the task is nullRejectedExecutionException - if the task cannot be scheduled for executionpublic <T> ForkJoinTask<T> submit(ForkJoinTask<T> task)
externalSubmit(ForkJoinTask) when called from a thread that is not in this pool.T - the type of the task's resulttask - the task to submitNullPointerException - if the task is nullRejectedExecutionException - if the task cannot be scheduled for executionpublic <T> ForkJoinTask<T> submit(Callable<T> task)
ExecutorServiceget method will return the task's result upon successful completion. If you would like to immediately block waiting for a task, you can use constructions of the form result = exec.submit(aCallable).get();
Note: The Executors class includes a set of methods that can convert some other common closure-like objects, for example, PrivilegedAction to Callable form so they can be submitted.
submit in interface ExecutorService
submit in class AbstractExecutorService
T - the type of the task's resulttask - the task to submitNullPointerException - if the task is nullRejectedExecutionException - if the task cannot be scheduled for executionpublic <T> ForkJoinTask<T> submit(Runnable task, T result)
ExecutorServiceget method will return the given result upon successful completion.submit in interface ExecutorService
submit in class AbstractExecutorService
T - the type of the resulttask - the task to submitresult - the result to returnNullPointerException - if the task is nullRejectedExecutionException - if the task cannot be scheduled for executionpublic ForkJoinTask<?> submit(Runnable task)
ExecutorServiceget method will return null upon successful completion.submit in interface ExecutorService
submit in class AbstractExecutorService
task - the task to submitNullPointerException - if the task is nullRejectedExecutionException - if the task cannot be scheduled for executionpublic <T> ForkJoinTask<T> externalSubmit(ForkJoinTask<T> task)
ForkJoinTask client. The task is added to a scheduling queue for submissions to the pool even when called from a thread in the pool.submit(ForkJoinTask) when called from a thread that is not in this pool.T - the type of the task's resulttask - the task to submitNullPointerException - if the task is nullRejectedExecutionException - if the task cannot be scheduled for executionpublic <T> ForkJoinTask<T> lazySubmit(ForkJoinTask<T> task)
T - the type of the task's resulttask - the taskNullPointerException - if the task is nullRejectedExecutionException - if the task cannot be scheduled for executionpublic int setParallelism(int size)
size - the target parallelism levelIllegalArgumentException - if size is less than 1 or greater than the maximum supported by this pool.UnsupportedOperationException - this is thecommonPool() and parallelism level was set by System property java.util.concurrent.ForkJoinPool.common.parallelism.public <T> List<Future<T>> invokeAllUninterruptibly(Collection<? extends Callable<T>> tasks)
invokeAll. Executes the given tasks, returning a list of Futures holding their status and results when all complete, ignoring interrupts. Future.isDone() is true for each element of the returned list. Note that a completed task could have terminated either normally or by throwing an exception. The results of this method are undefined if the given collection is modified while this operation is in progress.ExecutorService.invokeAll(java.util.Collection).T - the type of the values returned from the taskstasks - the collection of tasksNullPointerException - if tasks or any of its elements are null
RejectedExecutionException - if any task cannot be scheduled for executionpublic <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks) throws InterruptedException
ExecutorServiceFuture.isDone() is true for each element of the returned list. Note that a completed task could have terminated either normally or by throwing an exception. The results of this method are undefined if the given collection is modified while this operation is in progress.invokeAll in interface ExecutorService
invokeAll in class AbstractExecutorService
T - the type of the values returned from the taskstasks - the collection of tasksInterruptedException - if interrupted while waiting, in which case unfinished tasks are cancelledpublic <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) throws InterruptedException
ExecutorServiceFuture.isDone() is true for each element of the returned list. Upon return, tasks that have not completed are cancelled. Note that a completed task could have terminated either normally or by throwing an exception. The results of this method are undefined if the given collection is modified while this operation is in progress.invokeAll in interface ExecutorService
invokeAll in class AbstractExecutorService
T - the type of the values returned from the taskstasks - the collection of taskstimeout - the maximum time to waitunit - the time unit of the timeout argumentInterruptedException - if interrupted while waiting, in which case unfinished tasks are cancelledpublic <T> T invokeAny(Collection<? extends Callable<T>> tasks) throws InterruptedException, ExecutionException
ExecutorServiceinvokeAny in interface ExecutorService
invokeAny in class AbstractExecutorService
T - the type of the values returned from the taskstasks - the collection of tasksInterruptedException - if interrupted while waitingExecutionException - if no task successfully completespublic <T> T invokeAny(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException
ExecutorServiceinvokeAny in interface ExecutorService
invokeAny in class AbstractExecutorService
T - the type of the values returned from the taskstasks - the collection of taskstimeout - the maximum time to waitunit - the time unit of the timeout argumentInterruptedException - if interrupted while waitingExecutionException - if no task successfully completesTimeoutException - if the given timeout elapses before any task successfully completespublic ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit)
shutdownNow(), or is shutdown() when otherwise quiescent and cancelDelayedTasksOnShutdown() is in effect.schedule in interface ScheduledExecutorService
command - the task to executedelay - the time from now to delay executionunit - the time unit of the delay parameterget() method will return null upon normal completion.RejectedExecutionException - if the pool is shutdown or submission encounters resource exhaustion.NullPointerException - if command or unit is nullpublic <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit)
shutdownNow(), or is shutdown() when otherwise quiescent and cancelDelayedTasksOnShutdown() is in effect.schedule in interface ScheduledExecutorService
V - the type of the callable's resultcallable - the function to executedelay - the time from now to delay executionunit - the time unit of the delay parameterget() method will return the value from the callable upon normal completion.RejectedExecutionException - if the pool is shutdown or submission encounters resource exhaustion.NullPointerException - if command or unit is nullpublic ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit)
initialDelay, then initialDelay + period, then initialDelay + 2 * period, and so on. The sequence of task executions continues indefinitely until one of the following exceptional completions occur:
shutdownNow() is called shutdown() is called and the pool is otherwise quiescent, in which case existing executions continue but subsequent executions do not. get on the returned future will throw ExecutionException, holding the exception as its cause. isDone() on the returned future will return true. If any execution of this task takes longer than its period, then subsequent executions may start late, but will not concurrently execute.
scheduleAtFixedRate in interface ScheduledExecutorService
command - the task to executeinitialDelay - the time to delay first executionperiod - the period between successive executionsunit - the time unit of the initialDelay and period parametersget() method will never return normally, and will throw an exception upon task cancellation or abnormal termination of a task execution.RejectedExecutionException - if the pool is shutdown or submission encounters resource exhaustion.NullPointerException - if command or unit is nullIllegalArgumentException - if period less than or equal to zeropublic ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit)
The sequence of task executions continues indefinitely until one of the following exceptional completions occur:
shutdownNow() is called shutdown() is called and the pool is otherwise quiescent, in which case existing executions continue but subsequent executions do not. get on the returned future will throw ExecutionException, holding the exception as its cause. isDone() on the returned future will return true.scheduleWithFixedDelay in interface ScheduledExecutorService
command - the task to executeinitialDelay - the time to delay first executiondelay - the delay between the termination of one execution and the commencement of the nextunit - the time unit of the initialDelay and delay parametersget() method will never return normally, and will throw an exception upon task cancellation or abnormal termination of a task execution.RejectedExecutionException - if the pool is shutdown or submission encounters resource exhaustion.NullPointerException - if command or unit is nullIllegalArgumentException - if delay less than or equal to zeropublic <V> ForkJoinTask<V> submitWithTimeout(Callable<V> callable, long timeout, TimeUnit unit, Consumer<? super ForkJoinTask<V>> timeoutAction)
timeoutAction is null, the task is cancelled (via
cancel(true). Otherwise, the action is applied and the task may be interrupted if running. Actions may include ForkJoinTask.complete(V) to set a replacement value or ForkJoinTask.completeExceptionally(Throwable) to throw an appropriate exception. Note that these can succeed only if the task has not already completed when the timeoutAction executes.V - the type of the callable's resultcallable - the function to executetimeout - the time to wait before cancelling if not completedunit - the time unit of the timeout parametertimeoutAction - if nonnull, an action to perform on timeout, otherwise the default action is to cancel using cancel(true).RejectedExecutionException - if the task cannot be scheduled for executionNullPointerException - if callable or unit is nullpublic void cancelDelayedTasksOnShutdown()
shutdown() (unless this pool is the commonPool() which never shuts down). This method may be invoked either before shutdown() to take effect upon the next call, or afterwards to cancel such tasks, which may then allow termination. Note that subsequent executions of periodic tasks are always disabled upon shutdown, so this method applies meaningfully only to non-periodic tasks.public ForkJoinPool.ForkJoinWorkerThreadFactory getFactory()
public Thread.UncaughtExceptionHandler getUncaughtExceptionHandler()
null if nonepublic int getParallelism()
public static int getCommonPoolParallelism()
public int getPoolSize()
getParallelism() when threads are created to maintain parallelism when others are cooperatively blocked.public boolean getAsyncMode()
true if this pool uses local first-in-first-out scheduling mode for forked tasks that are never joined.true if this pool uses async modepublic int getRunningThreadCount()
public int getActiveThreadCount()
public boolean isQuiescent()
true if all worker threads are currently idle. An idle worker is one that cannot obtain a task to execute because none are available to steal from other threads, and there are no pending submissions to the pool. This method is conservative; it might not return true immediately upon idleness of all threads, but will eventually become true if threads remain inactive.true if all threads are currently idlepublic long getStealCount()
public long getQueuedTaskCount()
getDelayedTaskCount().public int getQueuedSubmissionCount()
public long getDelayedTaskCount()
public boolean hasQueuedSubmissions()
true if there are any tasks submitted to this pool that have not yet begun executing.true if there are any queued submissionsprotected ForkJoinTask<?> pollSubmission()
null if noneprotected int drainTasksTo(Collection<? super ForkJoinTask<?>> c)
c may result in elements being in neither, either or both collections when the associated exception is thrown. The behavior of this operation is undefined if the specified collection is modified while the operation is in progress.c - the collection to transfer elements intopublic void shutdown()
commonPool(), and no additional effect if already shut down. Tasks that are in the process of being submitted concurrently during the course of this method may or may not be rejected.shutdown in interface ExecutorService
public List<Runnable> shutdownNow()
commonPool(), and no additional effect if already shut down. Otherwise, tasks that are in the process of being submitted or executed concurrently during the course of this method may or may not be rejected. This method cancels both existing and unexecuted tasks, in order to permit termination in the presence of task dependencies. So the method always returns an empty list (unlike the case for some other Executors).shutdownNow in interface ExecutorService
public boolean isTerminated()
true if all tasks have completed following shut down.isTerminated in interface ExecutorService
true if all tasks have completed following shut downpublic boolean isTerminating()
true if the process of termination has commenced but not yet completed. This method may be useful for debugging. A return of true reported a sufficient period after shutdown may indicate that submitted tasks have ignored or suppressed interruption, or are waiting for I/O, causing this executor not to properly terminate. (See the advisory notes for class ForkJoinTask stating that tasks should not normally entail blocking operations. But if they do, they must abort them on interrupt.)true if terminating but not yet terminatedpublic boolean isShutdown()
true if this pool has been shut down.isShutdown in interface ExecutorService
true if this pool has been shut downpublic boolean awaitTermination(long timeout, TimeUnit unit) throws InterruptedException
commonPool() never terminates until program shutdown, when applied to the common pool, this method is equivalent to awaitQuiescence(long, TimeUnit) but always returns false.awaitTermination in interface ExecutorService
timeout - the maximum time to waitunit - the time unit of the timeout argumenttrue if this executor terminated and false if the timeout elapsed before terminationInterruptedException - if interrupted while waitingpublic boolean awaitQuiescence(long timeout, TimeUnit unit)
ForkJoinTask.helpQuiesce(). Otherwise, waits and/or attempts to assist performing tasks until this pool isQuiescent() or the indicated timeout elapses.timeout - the maximum time to waitunit - the time unit of the timeout argumenttrue if quiescent; false if the timeout elapsed.public void close()
commonPool(), initiates an orderly shutdown in which previously submitted tasks are executed, but no new tasks will be accepted, and waits until all tasks have completed execution and the executor has terminated. If already terminated, or this is the commonPool(), this method has no effect on execution, and does not wait. Otherwise, if interrupted while waiting, this method stops all executing tasks as if by invoking shutdownNow(). It then continues to wait until all actively executing tasks have completed. Tasks that were awaiting execution are not executed. The interrupt status will be re-asserted before this method returns.
close in interface AutoCloseable
close in interface ExecutorService
public static void managedBlock(ForkJoinPool.ManagedBlocker blocker) throws InterruptedException
blocker.block(). This method repeatedly calls blocker.isReleasable() and blocker.block() until either method returns true. Every call to blocker.block() is preceded by a call to blocker.isReleasable() that returned false.
If not running in a ForkJoinPool, this method is behaviorally equivalent to
while (!blocker.isReleasable())
if (blocker.block())
break; If running in a ForkJoinPool, the pool may first be expanded to ensure sufficient parallelism available during the call to blocker.block().blocker - the blocker taskInterruptedException - if blocker.block() did so
© 1993, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/util/concurrent/ForkJoinPool.html