| java.lang.Object org.jgroups.util.LinkedListQueue
LinkedListQueue | public class LinkedListQueue (Code) | | LinkedListQueue implementation based on java.util.Queue. Can be renamed to Queue.java and compiled if someone wants to
use this implementation rather than the original Queue. However, a simple insertion and removal of 1 million
objects into this queue shoed that it was ca. 15-20% slower than the original queue. We just include it in the
JGroups distribution to maybe use it at a later point when it has become faster.
author: Bela Ban |
Method Summary | |
public void | 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. | public void | addAtHead(Object obj) 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. | public void | close(boolean flush_entries) Marks the queues as closed. | public boolean | closed() returns true if the Queue has been closed
however, this method will return false if the queue has been closed
using the close(true) method and the last element has yet not been received. | public Vector | getContents() | public Object | peek() returns the first object on the queue, without removing it. | public Object | peek(long timeout) returns the first object on the queue, without removing it. | public Object | remove() | public Object | remove(long timeout) Removes 1 element from the head. | public void | removeElement(Object obj) removes a specific object from the queue. | public void | reset() resets the queue. | public int | size() | public String | toString() |
log | final protected static Log log(Code) | | |
num_markers | int num_markers(Code) | | |
LinkedListQueue | public LinkedListQueue()(Code) | | creates an empty queue
|
add | public void add(Object obj) throws QueueClosedException(Code) | | 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.
Parameters: obj - - the object to be added to the queue throws: QueueClosed - exception if closed() returns true |
addAtHead | public void addAtHead(Object obj) throws QueueClosedException(Code) | | 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.
Parameters: obj - - the object to be added to the queue throws: QueueClosed - exception if closed() returns true |
close | public void close(boolean flush_entries)(Code) | | Marks the queues as closed. When an add or remove operation is
attempted on a closed queue, an exception is thrown.
Parameters: flush_entries - When true, a end-of-entries marker is added to the end of the queue.Entries may be added and removed, but when the end-of-entries markeris encountered, the queue is marked as closed. This allows to flushpending messages before closing the queue. |
closed | public boolean closed()(Code) | | returns true if the Queue has been closed
however, this method will return false if the queue has been closed
using the close(true) method and the last element has yet not been received.
true if the queue has been closed |
getContents | public Vector getContents()(Code) | | returns a vector with all the objects currently in the queue
|
peek | public Object peek() throws QueueClosedException(Code) | | returns the first object on the queue, without removing it.
If the queue is empty this object blocks until the first queue object has
been added
the first object on the queue |
peek | public Object peek(long timeout) throws QueueClosedException, TimeoutException(Code) | | returns the first object on the queue, without removing it.
If the queue is empty this object blocks until the first queue object has
been added or the operation times out
Parameters: timeout - how long in milli seconds will this operation wait for an object to be added to the queuebefore it times out the first object on the queue |
remove | public Object remove() throws QueueClosedException(Code) | | Removes 1 element from head or blocks
until next element has been added
the first element to be taken of the queue |
remove | public Object remove(long timeout) throws QueueClosedException, TimeoutException(Code) | | Removes 1 element from the head.
If the queue is empty the operation will wait for timeout ms.
if no object is added during the timeout time, a Timout exception is thrown
Parameters: timeout - - the number of milli seconds this operation will wait before it times out the first object in the queue |
removeElement | public void removeElement(Object obj) throws QueueClosedException(Code) | | removes a specific object from the queue.
the object is matched up using the Object.equals method.
Parameters: obj - the actual object to be removed from the queue |
reset | public void reset()(Code) | | resets the queue.
This operation removes all the objects in the queue and marks the queue open
|
size | public int size()(Code) | | returns the number of objects that are currently in the queue
|
toString | public String toString()(Code) | | prints the size of the queue
|
|
|