org.apache.commons.collections.set
Class SynchronizedSet
java.lang.Object
|
+--org.apache.commons.collections.collection.SynchronizedCollection
|
+--org.apache.commons.collections.set.SynchronizedSet
- All Implemented Interfaces:
- Collection, Set
- public class SynchronizedSet
- extends SynchronizedCollection
- implements Set
Decorates another Set
to synchronize its behaviour for a
multi-threaded environment.
Methods are synchronized, then forwarded to the decorated set.
- Since:
- Commons Collections 3.0
- Version:
- $Revision: 1.2 $ $Date: 2004/01/14 21:43:14 $
- Author:
- Stephen Colebourne
Method Summary |
static Set |
decorate(Set set)
Factory method to create a synchronized set. |
protected Set |
getSet()
Gets the decorated set. |
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 interface java.util.Set |
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray |
SynchronizedSet
protected SynchronizedSet(Set set)
- Constructor that wraps (not copies).
- Parameters:
set
- the set to decorate, must not be null- Throws:
IllegalArgumentException
- if set is null
SynchronizedSet
protected SynchronizedSet(Set set,
Object lock)
- Constructor that wraps (not copies).
- Parameters:
set
- the set to decorate, must not be nulllock
- the lock object to use, must not be null- Throws:
IllegalArgumentException
- if set is null
decorate
public static Set decorate(Set set)
- Factory method to create a synchronized set.
- Parameters:
set
- the set to decorate, must not be null- Throws:
IllegalArgumentException
- if set is null
getSet
protected Set getSet()
- Gets the decorated set.
- Returns:
- the decorated set
Copyright © 2001-2004 Apache Software Foundation. All Rights Reserved.