Interface ReadWriteLockCollection<E>

Type Parameters:
E - The type of elements in the collection.
All Superinterfaces:
Collection<E>, Iterable<E>, ReadWriteLock
All Known Subinterfaces:
ReadWriteLockSet<E>
All Known Implementing Classes:
DecoratorReadWriteLockCollection, DecoratorReadWriteLockSet

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