April 2018
Intermediate to advanced
910 pages
33h 21m
English
JDK 9 uses ConcurrentHashMap for mapping ProtectionDomain to PermissionCollection. ConcurrentHashMap is typically used for high concurrency in applications. It has the following characteristics:
The ConcurrentHashMap class definition follows:
public class ConcurrentHashMap<K, V> extends AbstractMap<K, V> implements ConcurrentMap<K, V>, Serializable
In the preceding class definition, K refers to the type of keys maintained by the hash map and V indicates the type of mapped values. There is a KeySetView sub-class and several methods.
There are three additional classes related ...