- java.lang.Object
-
- java.lang.ref.ReferenceQueue<T>
-
public class ReferenceQueue<T> extends Object
Reference queues, to which registered reference objects are appended by the garbage collector after the appropriate reachability changes are detected.- Since:
- 1.2
-
-
Constructor Summary
Constructors Constructor and Description ReferenceQueue()
Constructs a new reference-object queue.
-
Method Summary
Methods Modifier and Type Method and Description Reference<? extends T>
poll()
Polls this queue to see if a reference object is available.Reference<? extends T>
remove()
Removes the next reference object in this queue, blocking until one becomes available.Reference<? extends T>
remove(long timeout)
Removes the next reference object in this queue, blocking until either one becomes available or the given timeout period expires.
-
-
-
Method Detail
-
poll
public Reference<? extends T> poll()
Polls this queue to see if a reference object is available. If one is available without further delay then it is removed from the queue and returned. Otherwise this method immediately returns null.- Returns:
- A reference object, if one was immediately available,
otherwise
null
-
remove
public Reference<? extends T> remove(long timeout) throws IllegalArgumentException, InterruptedException
Removes the next reference object in this queue, blocking until either one becomes available or the given timeout period expires.This method does not offer real-time guarantees: It schedules the timeout as if by invoking the
Object.wait(long)
method.- Parameters:
timeout
- If positive, block for up totimeout
milliseconds while waiting for a reference to be added to this queue. If zero, block indefinitely.- Returns:
- A reference object, if one was available within the specified
timeout period, otherwise
null
- Throws:
IllegalArgumentException
- If the value of the timeout argument is negativeInterruptedException
- If the timeout wait is interrupted
-
remove
public Reference<? extends T> remove() throws InterruptedException
Removes the next reference object in this queue, blocking until one becomes available.- Returns:
- A reference object, blocking until one becomes available
- Throws:
InterruptedException
- If the wait is interrupted
-
-
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/lang/ref/referencequeue.html/.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.