Interface ReadWriteLockSet<E>

Type Parameters:
E - The type of elements in the set.
All Superinterfaces:
Collection<E>, Iterable<E>, ReadWriteLock, ReadWriteLockCollection<E>, Set<E>
All Known Implementing Classes:
DecoratorReadWriteLockSet

public interface ReadWriteLockSet<E> extends ReadWriteLockCollection<E>, Set<E>
A thread-safe set that uses a pair of read and write locks to access its data.
Author:
Garret Wilson