Serialized Form
serialVersionUID: 7249069246764182397L
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
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
cchm
CustomConcurrentHashMap<K,V> cchm