Class ObjectPool<K,V>

java.lang.Object
java.util.AbstractMap<K,V>
com.landawn.abacus.util.ObjectPool<K,V>
Type Parameters:
K - the key type
V - the value type
All Implemented Interfaces:
Map<K,V>

@Internal @Beta public final class ObjectPool<K,V> extends AbstractMap<K,V>
It's is a multiple-thread safety map with fixed size. it's designed for frequent get and few add/remove operation with a few limited keys.
Since:
0.8
Author:
Haiyang Li