Uses of Class
org.cache2k.CacheManager
-
Packages that use CacheManager Package Description org.cache2k Main package for cache2k API containing functions to build and access a cache.org.cache2k.config The cache configuration as a Java bean and support types.org.cache2k.spi Service provider interface that is used by the cache2k implementation. -
-
Uses of CacheManager in org.cache2k
Methods in org.cache2k that return CacheManager Modifier and Type Method Description CacheManager
AbstractCache. getCacheManager()
CacheManager
Cache. getCacheManager()
Return the cache manager for this cache instance.CacheManager
ForwardingCache. getCacheManager()
static CacheManager
CacheManager. getInstance()
Get the default cache manager for the default class loader.static CacheManager
CacheManager. getInstance(ClassLoader cl)
Get the default cache manager for the specified class loader.static CacheManager
CacheManager. getInstance(ClassLoader cl, String managerName)
Retrieve a cache manager with the specified name using the specified classloader.static CacheManager
CacheManager. getInstance(String managerName)
Retrieve a cache manager with the specified name.CacheManager
Cache2kBuilder. getManager()
Get the associated cache manager.Methods in org.cache2k with parameters of type CacheManager Modifier and Type Method Description Cache2kBuilder<K,V>
Cache2kBuilder. manager(CacheManager manager)
The manager, the created cache will belong to. -
Uses of CacheManager in org.cache2k.config
Methods in org.cache2k.config that return CacheManager Modifier and Type Method Description CacheManager
CacheBuildContext. getCacheManager()
Assigned cache manager. -
Uses of CacheManager in org.cache2k.spi
Methods in org.cache2k.spi that return CacheManager Modifier and Type Method Description CacheManager
Cache2kCoreProvider. getManager(ClassLoader cl, String name)
Methods in org.cache2k.spi with parameters of type CacheManager Modifier and Type Method Description <K,V>
Cache<K,V>Cache2kCoreProvider. createCache(CacheManager m, Cache2kConfig<K,V> cfg)
Create a cache, apply external configuration before creating it.Cache2kConfig<?,?>
Cache2kCoreProvider. getDefaultConfig(CacheManager m)
Return the effective default configuration for this manager.
-