-
- Enclosing class:
- ForkJoinPool
public static interface ForkJoinPool.ManagedBlocker
Interface for extending managed parallelism for tasks running inForkJoinPool
s.A
ManagedBlocker
provides two methods. MethodisReleasable
must returntrue
if blocking is not necessary. Methodblock
blocks the current thread if necessary (perhaps internally invokingisReleasable
before actually blocking). These actions are performed by any thread invokingForkJoinPool.managedBlock(java.util.concurrent.ForkJoinPool.ManagedBlocker)
. The unusual methods in this API accommodate synchronizers that may, but don't usually, block for long periods. Similarly, they allow more efficient internal handling of cases in which additional workers may be, but usually are not, needed to ensure sufficient parallelism. Toward this end, implementations of methodisReleasable
must be amenable to repeated invocation.For example, here is a ManagedBlocker based on a ReentrantLock:
class ManagedLocker implements ManagedBlocker { final ReentrantLock lock; boolean hasLock = false; ManagedLocker(ReentrantLock lock) { this.lock = lock; } public boolean block() { if (!hasLock) lock.lock(); return true; } public boolean isReleasable() { return hasLock || (hasLock = lock.tryLock()); } }
Here is a class that possibly blocks waiting for an item on a given queue:
class QueueTaker<E> implements ManagedBlocker { final BlockingQueue<E> queue; volatile E item = null; QueueTaker(BlockingQueue<E> q) { this.queue = q; } public boolean block() throws InterruptedException { if (item == null) item = queue.take(); return true; } public boolean isReleasable() { return item != null || (item = queue.poll()) != null; } public E getItem() { // call after pool.managedBlock completes return item; } }
-
-
Method Summary
Methods Modifier and Type Method and Description boolean
block()
Possibly blocks the current thread, for example waiting for a lock or condition.boolean
isReleasable()
Returnstrue
if blocking is unnecessary.
-
-
-
Method Detail
-
block
boolean block() throws InterruptedException
Possibly blocks the current thread, for example waiting for a lock or condition.- Returns:
true
if no additional blocking is necessary (i.e., if isReleasable would return true)- Throws:
InterruptedException
- if interrupted while waiting (the method is not required to do so, but is allowed to)
-
isReleasable
boolean isReleasable()
Returnstrue
if blocking is unnecessary.
-
-
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/ForkJoinPool.ManagedBlocker.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.