Reputation: 455
How is the newConcurrentMap implemented in backend? I mean is it based on a hashmap (buckets) or there is some other backend implementation
Upvotes: 3
Views: 879
Reputation: 14549
Currently it returns a java.util.concurrent.ConcurrentHashMap
.
Upvotes: 6