Uses of Class
com.github.benmanes.caffeine.jcache.configuration.CaffeineConfiguration
-
Packages that use CaffeineConfiguration Package Description com.github.benmanes.caffeine.jcache com.github.benmanes.caffeine.jcache.configuration -
-
Uses of CaffeineConfiguration in com.github.benmanes.caffeine.jcache
Fields in com.github.benmanes.caffeine.jcache declared as CaffeineConfiguration Modifier and Type Field Description (package private) CaffeineConfiguration<K,V>
CacheFactory.Builder. config
(package private) CaffeineConfiguration<K,V>
CacheProxy. configuration
Methods in com.github.benmanes.caffeine.jcache that return CaffeineConfiguration Modifier and Type Method Description CaffeineConfiguration<K,V>
CacheProxy. getConfiguration()
private static <K,V>
CaffeineConfiguration<K,V>CacheFactory. resolveConfigurationFor(javax.cache.configuration.Configuration<K,V> configuration)
Copies the configuration and overlays it on top of the default settings.Constructors in com.github.benmanes.caffeine.jcache with parameters of type CaffeineConfiguration Constructor Description Builder(javax.cache.CacheManager cacheManager, java.lang.String cacheName, CaffeineConfiguration<K,V> config)
CacheProxy(java.lang.String name, java.util.concurrent.Executor executor, javax.cache.CacheManager cacheManager, CaffeineConfiguration<K,V> configuration, Cache<K,Expirable<V>> cache, EventDispatcher<K,V> dispatcher, java.util.Optional<javax.cache.integration.CacheLoader<K,V>> cacheLoader, javax.cache.expiry.ExpiryPolicy expiry, Ticker ticker, JCacheStatisticsMXBean statistics)
LoadingCacheProxy(java.lang.String name, java.util.concurrent.Executor executor, javax.cache.CacheManager cacheManager, CaffeineConfiguration<K,V> configuration, LoadingCache<K,Expirable<V>> cache, EventDispatcher<K,V> dispatcher, javax.cache.integration.CacheLoader<K,V> cacheLoader, javax.cache.expiry.ExpiryPolicy expiry, Ticker ticker, JCacheStatisticsMXBean statistics)
-
Uses of CaffeineConfiguration in com.github.benmanes.caffeine.jcache.configuration
Fields in com.github.benmanes.caffeine.jcache.configuration declared as CaffeineConfiguration Modifier and Type Field Description (package private) CaffeineConfiguration<K,V>
TypesafeConfigurator.Configurator. configuration
Methods in com.github.benmanes.caffeine.jcache.configuration that return CaffeineConfiguration Modifier and Type Method Description (package private) CaffeineConfiguration<K,V>
TypesafeConfigurator.Configurator. configure()
Returns a configuration built from the external settings.static <K,V>
CaffeineConfiguration<K,V>TypesafeConfigurator. defaults(com.typesafe.config.Config config)
Retrieves the default cache settings from the configuration resource.Methods in com.github.benmanes.caffeine.jcache.configuration that return types with arguments of type CaffeineConfiguration Modifier and Type Method Description static <K,V>
java.util.Optional<CaffeineConfiguration<K,V>>TypesafeConfigurator. from(com.typesafe.config.Config config, java.lang.String cacheName)
Retrieves the cache's settings from the configuration resource if defined.
-