Interface MultimapCacheManager<K,V>
-
- All Known Implementing Classes:
RemoteMultimapCacheManager
@Experimental public interface MultimapCacheManager<K,V>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default RemoteMultimapCache<K,V>
get(String name)
Retrieves a named multimap cache from the system.RemoteMultimapCache<K,V>
get(String name, boolean supportsDuplicates)
Retrieves a named multimap cache from the system.
-
-
-
Method Detail
-
get
default RemoteMultimapCache<K,V> get(String name)
Retrieves a named multimap cache from the system.- Parameters:
name
- , name of multimap cache to retrieve- Returns:
- null if no configuration exists as per rules set above, otherwise returns a multimap cache instance identified by cacheName and doesn't support duplicates
-
get
RemoteMultimapCache<K,V> get(String name, boolean supportsDuplicates)
Retrieves a named multimap cache from the system.- Parameters:
name
- , name of multimap cache to retrievesupportsDuplicates
- , boolean check for identifying whether it supports duplicates or not.- Returns:
- null if no configuration exists as per rules set above, otherwise returns a multimap cache instance identified by cacheName
-
-