Class SynchronizedMutableMap<K,V>

All Implemented Interfaces:
Serializable, Cloneable, Iterable<V>, Map<K,V>, InternalIterable<V>, MapIterable<K,V>, MutableMap<K,V>, MutableMapIterable<K,V>, UnsortedMapIterable<K,V>, RichIterable<V>

public class SynchronizedMutableMap<K,V> extends AbstractSynchronizedMapIterable<K,V> implements MutableMap<K,V>, Serializable
A synchronized view of a MutableMap. It is imperative that the user manually synchronize on the collection when iterating over it using the standard JDK iterator or JDK 5 for loop, as per Collections.synchronizedCollection(Collection).
See Also: