Serialized Form


Package extra166y

Class extra166y.CustomConcurrentHashMap extends java.util.AbstractMap<K,V> implements Serializable

serialVersionUID: 7249069246764182397L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream s)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Reconstitute the instance from a stream (i.e., deserialize it).

Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream s)
                  throws java.io.IOException
Save the state of the instance to a stream (i.e., serialize it).

Serial Data:
the key (Object) and value (Object) for each key-value mapping, followed by a null pair. The key-value mappings are emitted in no particular order.
Throws:
java.io.IOException
Serialized Fields

factory

extra166y.CustomConcurrentHashMap.NodeFactory factory
The factory for this map


keyEquivalence

CustomConcurrentHashMap.Equivalence<K> keyEquivalence
Equivalence object for keys


valueEquivalence

CustomConcurrentHashMap.Equivalence<K> valueEquivalence
Equivalence object for values


initialSegmentCapacity

int initialSegmentCapacity
The initial size of Segment tables when they are first constructed

Class extra166y.CustomConcurrentHashMap.KeySet extends java.util.AbstractSet<K> implements Serializable

Serialized Fields

cchm

CustomConcurrentHashMap<K,V> cchm