Spec-Zone .ru
спецификации, руководства, описания, API
|
|
Java™ Platform Standard Ed. 7 DRAFT ea-b118 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.lang.Thread java.util.concurrent.ForkJoinWorkerThread
public class ForkJoinWorkerThread extends Thread
A thread managed by a ForkJoinPool
. This class is
subclassable solely for the sake of adding functionality -- there
are no overridable methods dealing with scheduling or execution.
However, you can override initialization and termination methods
surrounding the main task processing loop. If you do create such a
subclass, you will also need to supply a custom ForkJoinPool.ForkJoinWorkerThreadFactory
to use it in a ForkJoinPool
.
Modifier and Type | Class and Description |
---|
Nested classes/interfaces inherited from class java.lang.Thread |
---|
Thread.State, Thread.UncaughtExceptionHandler |
Modifier and Type | Field and Description |
---|
Fields inherited from class java.lang.Thread |
---|
MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY |
Modifier | Constructor and Description |
---|---|
protected |
ForkJoinWorkerThread(ForkJoinPool pool)
Creates a ForkJoinWorkerThread operating in the given pool. |
Modifier and Type | Method and Description |
---|---|
ForkJoinPool |
getPool()
Returns the pool hosting this thread. |
int |
getPoolIndex()
Returns the index number of this thread in its pool. |
protected void |
onStart()
Initializes internal state after construction but before processing any tasks. |
protected void |
onTermination(Throwable exception)
Performs cleanup associated with termination of this worker thread. |
void |
run()
This method is required to be public, but should never be called explicitly. |
Methods inherited from class java.lang.Thread |
---|
activeCount, checkAccess, clone, countStackFrames, currentThread, destroy, dumpStack, enumerate, getAllStackTraces, getContextClassLoader, getDefaultUncaughtExceptionHandler, getId, getName, getPriority, getStackTrace, getState, getThreadGroup, getUncaughtExceptionHandler, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, resume, setContextClassLoader, setDaemon, setDefaultUncaughtExceptionHandler, setName, setPriority, setUncaughtExceptionHandler, sleep, sleep, start, stop, stop, suspend, toString, yield |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
protected ForkJoinWorkerThread(ForkJoinPool pool)
pool
- the pool this thread works inNullPointerException
- if pool is nullMethod Detail |
---|
public ForkJoinPool getPool()
public int getPoolIndex()
protected void onStart()
protected void onTermination(Throwable exception)
super.onTermination
at the end of the overridden method.
exception
- the exception causing this thread to abort due
to an unrecoverable error, or null
if completed normallypublic void run()
run
in interface Runnable
run
in class Thread
Thread.start()
,
Thread.stop()
,
Thread.Thread(ThreadGroup, Runnable, String)
|
Java™ Platform Standard Ed. 7 DRAFT ea-b118 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright © 1993, 2010, Oracle Corporation. All rights reserved.