- java.lang.Object
-
- java.lang.Thread
-
- java.util.concurrent.ForkJoinWorkerThread
-
- All Implemented Interfaces:
- Runnable
public class ForkJoinWorkerThread extends Thread
A thread managed by aForkJoinPool
, which executesForkJoinTask
s. 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 customForkJoinPool.ForkJoinWorkerThreadFactory
to use it in aForkJoinPool
.- Since:
- 1.7
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.lang.Thread
Thread.State, Thread.UncaughtExceptionHandler
-
-
Field Summary
-
Fields inherited from class java.lang.Thread
MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY
-
-
Constructor Summary
Constructors Modifier Constructor and Description protected
ForkJoinWorkerThread(ForkJoinPool pool)
Creates a ForkJoinWorkerThread operating in the given pool.
-
Method Summary
Methods 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
-
-
-
-
Constructor Detail
-
ForkJoinWorkerThread
protected ForkJoinWorkerThread(ForkJoinPool pool)
Creates a ForkJoinWorkerThread operating in the given pool.- Parameters:
pool
- the pool this thread works in- Throws:
NullPointerException
- if pool is null
-
-
Method Detail
-
getPool
public ForkJoinPool getPool()
Returns the pool hosting this thread.- Returns:
- the pool
-
getPoolIndex
public int getPoolIndex()
Returns the index number of this thread in its pool. The returned value ranges from zero to the maximum number of threads (minus one) that have ever been created in the pool. This method may be useful for applications that track status or collect results per-worker rather than per-task.- Returns:
- the index number
-
onStart
protected void onStart()
Initializes internal state after construction but before processing any tasks. If you override this method, you must invokesuper.onStart()
at the beginning of the method. Initialization requires care: Most fields must have legal default values, to ensure that attempted accesses from other threads work correctly even before this thread starts processing tasks.
-
onTermination
protected void onTermination(Throwable exception)
Performs cleanup associated with termination of this worker thread. If you override this method, you must invokesuper.onTermination
at the end of the overridden method.- Parameters:
exception
- the exception causing this thread to abort due to an unrecoverable error, ornull
if completed normally
-
run
public void run()
This method is required to be public, but should never be called explicitly. It performs the main run loop to executeForkJoinTask
s.- Specified by:
run
in interfaceRunnable
- Overrides:
run
in classThread
- See Also:
Thread.start()
,Thread.stop()
,Thread.Thread(ThreadGroup, Runnable, String)
-
-
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-java/util/concurrent/forkjoinworkerthread.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.