Home | History | Annotate | Download | only in base

Lines Matching refs:queue

30  * A reference queue with an associated background thread that dequeues
66 * queue in ReferenceMap, which keeps the Finalizer running, and as a result,
107 * The actual reference queue that our background thread will poll.
109 final ReferenceQueue<Object> queue;
117 * Constructs a new queue.
122 ReferenceQueue<Object> queue;
125 queue = (ReferenceQueue<Object>) startFinalizer.invoke(null,
135 queue = new ReferenceQueue<Object>();
138 this.queue = queue;
143 * Repeatedly dequeues references from the queue and invokes
144 * {@link FinalizableReference#finalizeReferent()} on them until the queue
154 while ((reference = queue.poll()) != null) {