|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.commons.collections.collection.SynchronizedCollection | +--org.apache.commons.collections.buffer.SynchronizedBuffer
Decorates another Buffer
to synchronize its behaviour
for a multi-threaded environment.
Methods are synchronized, then forwarded to the decorated buffer.
This class is Serializable from Commons Collections 3.1.
Field Summary |
Fields inherited from class org.apache.commons.collections.collection.SynchronizedCollection |
collection, lock |
Constructor Summary | |
protected |
SynchronizedBuffer(Buffer buffer)
Constructor that wraps (not copies). |
protected |
SynchronizedBuffer(Buffer buffer,
Object lock)
Constructor that wraps (not copies). |
Method Summary | |
static Buffer |
decorate(Buffer buffer)
Factory method to create a synchronized buffer. |
Object |
get()
Gets the next object from the buffer without removing it. |
protected Buffer |
getBuffer()
Gets the buffer being decorated. |
Object |
remove()
Gets and removes the next object from the buffer. |
Methods inherited from class org.apache.commons.collections.collection.SynchronizedCollection |
add, addAll, clear, contains, containsAll, decorate, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray, toString |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface java.util.Collection |
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray |
Constructor Detail |
protected SynchronizedBuffer(Buffer buffer)
buffer
- the buffer to decorate, must not be null
IllegalArgumentException
- if the buffer is nullprotected SynchronizedBuffer(Buffer buffer, Object lock)
buffer
- the buffer to decorate, must not be nulllock
- the lock object to use, must not be null
IllegalArgumentException
- if the buffer is nullMethod Detail |
public static Buffer decorate(Buffer buffer)
buffer
- the buffer to decorate, must not be null
IllegalArgumentException
- if buffer is nullprotected Buffer getBuffer()
public Object get()
Buffer
get
in interface Buffer
public Object remove()
Buffer
remove
in interface Buffer
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |