Uses of Class
org.apache.commons.collections.collection.SynchronizedCollection
-
Packages that use SynchronizedCollection Package Description org.apache.commons.collections.bag org.apache.commons.collections.buffer This package contains implementations of theBuffer
interface.org.apache.commons.collections.list This package contains implementations of theList
interface.org.apache.commons.collections.set -
-
Uses of SynchronizedCollection in org.apache.commons.collections.bag
Subclasses of SynchronizedCollection in org.apache.commons.collections.bag Modifier and Type Class Description class
SynchronizedBag
Decorates anotherBag
to synchronize its behaviour for a multi-threaded environment.class
SynchronizedSortedBag
Decorates anotherSortedBag
to synchronize its behaviour for a multi-threaded environment. -
Uses of SynchronizedCollection in org.apache.commons.collections.buffer
Subclasses of SynchronizedCollection in org.apache.commons.collections.buffer Modifier and Type Class Description class
BlockingBuffer
Decorates anotherBuffer
to makeBlockingBuffer.get()
andBlockingBuffer.remove()
block when theBuffer
is empty.class
BoundedBuffer
Decorates anotherBuffer
to ensure a fixed maximum size.class
SynchronizedBuffer
Decorates anotherBuffer
to synchronize its behaviour for a multi-threaded environment. -
Uses of SynchronizedCollection in org.apache.commons.collections.list
Subclasses of SynchronizedCollection in org.apache.commons.collections.list Modifier and Type Class Description class
SynchronizedList
Decorates anotherList
to synchronize its behaviour for a multi-threaded environment. -
Uses of SynchronizedCollection in org.apache.commons.collections.set
Subclasses of SynchronizedCollection in org.apache.commons.collections.set Modifier and Type Class Description class
SynchronizedSet
Decorates anotherSet
to synchronize its behaviour for a multi-threaded environment.class
SynchronizedSortedSet
Decorates anotherSortedSet
to synchronize its behaviour for a multi-threaded environment.
-