-
- All Implemented Interfaces:
-
io.ably.lib.types.ReadOnlyMap
public abstract class InternalMap<K, V> implements ReadOnlyMap<K, V>
A map implemented using a ConcurrentHashMap. This class is a base class for other classes which are designed to be internal to the library, specifically as regards access to the map field. This class exposes a ReadOnlyMap which is safe to be exposed in our public API.
-
-
Method Summary
-
-
Method Detail
-
containsKey
final boolean containsKey(Object key)
-
containsValue
final boolean containsValue(Object value)
-
isEmpty
final boolean isEmpty()
-
size
final int size()
-
-
-
-