Uses of Class org.jgroups.util.QueueClosedException

Uses in package org.jgroups.util

Methods which throw type org.jgroups.util.QueueClosedException

void
LinkedListQueue.add(Object obj)
adds an object to the tail of this queue If the queue has been closed with close(true) no exception will be thrown if the queue has not been flushed yet.
void
Queue.add(Object obj)
adds an object to the tail of this queue If the queue has been closed with close(true) no exception will be thrown if the queue has not been flushed yet.
void
Queue2.add(Object obj)
adds an object to the tail of this queue If the queue has been closed with close(true) no exception will be thrown if the queue has not been flushed yet.
void
Queue.addAll(Collection c)
void
void
Adds a new object to the head of the queue basically (obj.equals(LinkedListQueue.remove(LinkedListQueue.add(obj)))) returns true If the queue has been closed with close(true) no exception will be thrown if the queue has not been flushed yet.
void
Queue.addAtHead(Object obj)
Adds a new object to the head of the queue basically (obj.equals(queue.remove(queue.add(obj)))) returns true If the queue has been closed with close(true) no exception will be thrown if the queue has not been flushed yet.
void
Queue2.addAtHead(Object obj)
Adds a new object to the head of the queue basically (obj.equals(queue.remove(queue.add(obj)))) returns true If the queue has been closed with close(true) no exception will be thrown if the queue has not been flushed yet.
Object
returns the first object on the queue, without removing it.
Object
returns the first object on the queue, without removing it.
Object
returns the first object on the queue, without removing it.
Object
LinkedListQueue.peek(long timeout)
returns the first object on the queue, without removing it.
Object
Queue.peek(long timeout)
returns the first object on the queue, without removing it.
Object
Queue2.peek(long timeout)
returns the first object on the queue, without removing it.
Object
Removes 1 element from head or blocks until next element has been added
Object
Removes 1 element from head or blocks until next element has been added or until queue has been closed
Object
Removes 1 element from head or blocks until next element has been added or until queue has been closed
Object
LinkedListQueue.remove(long timeout)
Removes 1 element from the head.
Object
Queue.remove(long timeout)
Removes 1 element from the head.
Object
Queue2.remove(long timeout)
Removes 1 element from the head.
void
removes a specific object from the queue.
void
Queue.removeElement(Object obj)
removes a specific object from the queue.
void
Queue2.removeElement(Object obj)
removes a specific object from the queue.
void
Queue2.waitUntilEmpty(long timeout)
Blocks until the queue has no elements left.

Copyright B) 1998-2005 Bela Ban. All Rights Reserved.