ForkJoinTask<*>! |
adapt(runnable: Runnable!)
Returns a new ForkJoinTask that performs the run method of the given Runnable as its action, and returns a null result upon join .
|
ForkJoinTask<T>! |
adapt(runnable: Runnable!, result: T)
Returns a new ForkJoinTask that performs the run method of the given Runnable as its action, and returns the given result upon join .
|
ForkJoinTask<T>! |
adapt(callable: Callable<out T>!)
Returns a new ForkJoinTask that performs the call method of the given Callable as its action, and returns its result upon join , translating any checked exceptions encountered into RuntimeException .
|
Boolean |
cancel(mayInterruptIfRunning: Boolean)
Attempts to cancel execution of this task. This attempt will fail if the task has already completed or could not be cancelled for some other reason. If successful, and this task has not started when cancel is called, execution of this task is suppressed. After this method returns successfully, unless there is an intervening call to reinitialize , subsequent calls to isCancelled , isDone , and cancel will return true and calls to join and related methods will result in CancellationException .
This method may be overridden in subclasses, but if so, must still ensure that these properties hold. In particular, the cancel method itself must not throw exceptions.
This method is designed to be invoked by other tasks. To terminate the current task, you can just return or throw an unchecked exception from its computation method, or invoke completeExceptionally(java.lang.Throwable) .
|
Boolean |
compareAndSetForkJoinTaskTag(expect: Short, update: Short)
Atomically conditionally sets the tag value for this task. Among other applications, tags can be used as visit markers in tasks operating on graphs, as in methods that check: if (task.compareAndSetForkJoinTaskTag((short)0, (short)1)) before processing, otherwise exiting because the node has already been visited.
|
Unit |
complete(value: V)
Completes this task, and if not already aborted or cancelled, returning the given value as the result of subsequent invocations of join and related operations. This method may be used to provide results for asynchronous tasks, or to provide alternative handling for tasks that would not otherwise complete normally. Its use in other situations is discouraged. This method is overridable, but overridden versions must invoke super implementation to maintain guarantees.
|
Unit |
completeExceptionally(ex: Throwable!)
Completes this task abnormally, and if not already aborted or cancelled, causes it to throw the given exception upon join and related operations. This method may be used to induce exceptions in asynchronous tasks, or to force completion of tasks that would not otherwise complete. Its use in other situations is discouraged. This method is overridable, but overridden versions must invoke super implementation to maintain guarantees.
|
ForkJoinTask<V>! |
fork()
Arranges to asynchronously execute this task in the pool the current task is running in, if applicable, or using the java.util.concurrent.ForkJoinPool#commonPool() if not inForkJoinPool . While it is not necessarily enforced, it is a usage error to fork a task more than once unless it has completed and been reinitialized. Subsequent modifications to the state of this task or any data it operates on are not necessarily consistently observable by any thread other than the one executing it unless preceded by a call to join or related methods, or a call to isDone returning true .
|
V |
get()
Waits if necessary for the computation to complete, and then retrieves its result.
|
V |
get(timeout: Long, unit: TimeUnit!)
Waits if necessary for at most the given time for the computation to complete, and then retrieves its result, if available.
|
Throwable! |
getException()
Returns the exception thrown by the base computation, or a CancellationException if cancelled, or null if none or if the method has not yet completed.
|
Short |
getForkJoinTaskTag()
Returns the tag for this task.
|
ForkJoinPool! |
getPool()
Returns the pool hosting the current thread, or null if the current thread is executing outside of any ForkJoinPool.
This method returns null if and only if inForkJoinPool returns false .
|
Int |
getQueuedTaskCount()
Returns an estimate of the number of tasks that have been forked by the current worker thread but not yet executed. This value may be useful for heuristic decisions about whether to fork other tasks.
|
Int |
getSurplusQueuedTaskCount()
Returns an estimate of how many more locally queued tasks are held by the current worker thread than there are other worker threads that might steal them, or zero if this thread is not operating in a ForkJoinPool. This value may be useful for heuristic decisions about whether to fork other tasks. In many usages of ForkJoinTasks, at steady state, each worker should aim to maintain a small constant surplus (for example, 3) of tasks, and to process computations locally if this threshold is exceeded.
|
Unit |
helpQuiesce()
Possibly executes tasks until the pool hosting the current task is quiescent. This method may be of use in designs in which many tasks are forked, but none are explicitly joined, instead executing them until all are processed.
|
Boolean |
inForkJoinPool()
Returns true if the current thread is a ForkJoinWorkerThread executing as a ForkJoinPool computation.
|
V |
invoke()
Commences performing this task, awaits its completion if necessary, and returns its result, or throws an (unchecked) RuntimeException or Error if the underlying computation did so.
|
Unit |
invokeAll(t1: ForkJoinTask<*>!, t2: ForkJoinTask<*>!)
Forks the given tasks, returning when isDone holds for each task or an (unchecked) exception is encountered, in which case the exception is rethrown. If more than one task encounters an exception, then this method throws any one of these exceptions. If any task encounters an exception, the other may be cancelled. However, the execution status of individual tasks is not guaranteed upon exceptional return. The status of each task may be obtained using getException() and related methods to check if they have been cancelled, completed normally or exceptionally, or left unprocessed.
|
Unit |
invokeAll(vararg tasks: ForkJoinTask<*>!)
Forks the given tasks, returning when isDone holds for each task or an (unchecked) exception is encountered, in which case the exception is rethrown. If more than one task encounters an exception, then this method throws any one of these exceptions. If any task encounters an exception, others may be cancelled. However, the execution status of individual tasks is not guaranteed upon exceptional return. The status of each task may be obtained using getException() and related methods to check if they have been cancelled, completed normally or exceptionally, or left unprocessed.
|
MutableCollection<T>! |
invokeAll(tasks: MutableCollection<T>!)
Forks all tasks in the specified collection, returning when isDone holds for each task or an (unchecked) exception is encountered, in which case the exception is rethrown. If more than one task encounters an exception, then this method throws any one of these exceptions. If any task encounters an exception, others may be cancelled. However, the execution status of individual tasks is not guaranteed upon exceptional return. The status of each task may be obtained using getException() and related methods to check if they have been cancelled, completed normally or exceptionally, or left unprocessed.
|
Boolean |
isCancelled()
|
Boolean |
isCompletedAbnormally()
Returns true if this task threw an exception or was cancelled.
|
Boolean |
isCompletedNormally()
Returns true if this task completed without throwing an exception and was not cancelled.
|
Boolean |
isDone()
|
V |
join()
Returns the result of the computation when it is done. This method differs from get() in that abnormal completion results in RuntimeException or Error , not ExecutionException , and that interrupts of the calling thread do not cause the method to abruptly return by throwing InterruptedException .
|
ForkJoinTask<*>! |
peekNextLocalTask()
Returns, but does not unschedule or execute, a task queued by the current thread but not yet executed, if one is immediately available. There is no guarantee that this task will actually be polled or executed next. Conversely, this method may return null even if a task exists but cannot be accessed without contention with other threads. This method is designed primarily to support extensions, and is unlikely to be useful otherwise.
|
ForkJoinTask<*>! |
pollNextLocalTask()
Unschedules and returns, without executing, the next task queued by the current thread but not yet executed, if the current thread is operating in a ForkJoinPool. This method is designed primarily to support extensions, and is unlikely to be useful otherwise.
|
ForkJoinTask<*>! |
pollTask()
If the current thread is operating in a ForkJoinPool, unschedules and returns, without executing, the next task queued by the current thread but not yet executed, if one is available, or if not available, a task that was forked by some other thread, if available. Availability may be transient, so a null result does not necessarily imply quiescence of the pool this task is operating in. This method is designed primarily to support extensions, and is unlikely to be useful otherwise.
|
Unit |
quietlyComplete()
Completes this task normally without setting a value. The most recent value established by setRawResult (or null by default) will be returned as the result of subsequent invocations of join and related operations.
|
Unit |
quietlyInvoke()
Commences performing this task and awaits its completion if necessary, without returning its result or throwing its exception.
|
Unit |
quietlyJoin()
Joins this task, without returning its result or throwing its exception. This method may be useful when processing collections of tasks when some have been cancelled or otherwise known to have aborted.
|
Unit |
reinitialize()
Resets the internal bookkeeping state of this task, allowing a subsequent fork . This method allows repeated reuse of this task, but only if reuse occurs when this task has either never been forked, or has been forked, then completed and all outstanding joins of this task have also completed. Effects under any other usage conditions are not guaranteed. This method may be useful when executing pre-constructed trees of subtasks in loops.
Upon completion of this method, isDone() reports false , and getException() reports null . However, the value returned by getRawResult is unaffected. To clear this value, you can invoke setRawResult(null) .
|
Short |
setForkJoinTaskTag(newValue: Short)
Atomically sets the tag value for this task and returns the old value.
|
Boolean |
tryUnfork()
Tries to unschedule this task for execution. This method will typically (but is not guaranteed to) succeed if this task is the most recently forked task by the current thread, and has not commenced executing in another thread. This method may be useful when arranging alternative local processing of tasks that could have been, but were not, stolen.
|