The Java ConcurrentHashMap data structure. The ConcurrentHashmap is a hash table supporting full concurrency of retrievals and adjustable expected concurrency for updates. It allows concurrent modification of the Map from several threads without the need to block them
The Java ConcurrentHashMap
data structure.
This class provides a thread-safe variant of HashMap
.