Uses of Interface
org.ehcache.config.CacheConfiguration
-
Packages that use CacheConfiguration Package Description org.ehcache Main Ehcache API, includingcache managersandcaches.org.ehcache.config CacheManager configuration,Cache configurationand other configuration classes.org.ehcache.spi.loaderwriter CacheLoaderWriterSPI for aCache.org.ehcache.spi.persistence PersistableResourceServiceand other persistence related SPI.org.ehcache.spi.resilience ResilienceStrategyAPI of aCache. -
-
Uses of CacheConfiguration in org.ehcache
Methods in org.ehcache with parameters of type CacheConfiguration Modifier and Type Method Description <K,V>
Cache<K,V>CacheManager. createCache(java.lang.String alias, CacheConfiguration<K,V> config)Method parameters in org.ehcache with type arguments of type CacheConfiguration Modifier and Type Method Description <K,V>
Cache<K,V>CacheManager. createCache(java.lang.String alias, Builder<? extends CacheConfiguration<K,V>> configBuilder)Creates aCachein thisCacheManageraccording to the specifiedCacheConfigurationprovided through aBuilder. -
Uses of CacheConfiguration in org.ehcache.config
Subinterfaces of CacheConfiguration in org.ehcache.config Modifier and Type Interface Description interfaceCacheRuntimeConfiguration<K,V>Represents the configuration currently used by aCache.Methods in org.ehcache.config that return CacheConfiguration Modifier and Type Method Description CacheConfiguration<K,V>FluentCacheConfigurationBuilder. build()Builds a newCacheConfiguration.CacheConfiguration<?,?>FluentConfigurationBuilder. getCache(java.lang.String alias)Return the cache configuration for the given alias.Methods in org.ehcache.config that return types with arguments of type CacheConfiguration Modifier and Type Method Description java.util.Map<java.lang.String,CacheConfiguration<?,?>>Configuration. getCacheConfigurations()Mapping of aliases toCacheConfigurations, used to configure theCaches managed by theCacheManager.Methods in org.ehcache.config with parameters of type CacheConfiguration Modifier and Type Method Description BFluentConfigurationBuilder. withCache(java.lang.String alias, CacheConfiguration<?,?> config)Adds the given cache to this configuration.Method parameters in org.ehcache.config with type arguments of type CacheConfiguration Modifier and Type Method Description default BFluentConfigurationBuilder. withCache(java.lang.String alias, Builder<? extends CacheConfiguration<?,?>> builder)Adds the cache configuration built by a builder to this configuration. -
Uses of CacheConfiguration in org.ehcache.spi.loaderwriter
Methods in org.ehcache.spi.loaderwriter with parameters of type CacheConfiguration Modifier and Type Method Description <K,V>
CacheLoaderWriter<? super K,V>CacheLoaderWriterProvider. createCacheLoaderWriter(java.lang.String alias, CacheConfiguration<K,V> cacheConfiguration)Creates aCacheLoaderWriterfor use with theCacheof the given alias and configuration. -
Uses of CacheConfiguration in org.ehcache.spi.persistence
Methods in org.ehcache.spi.persistence with parameters of type CacheConfiguration Modifier and Type Method Description PersistableResourceService.PersistenceSpaceIdentifier<?>PersistableResourceService. getPersistenceSpaceIdentifier(java.lang.String name, CacheConfiguration<?,?> config)Returns aPersistableResourceService.PersistenceSpaceIdentifierfor the space associated to the provided arguments. -
Uses of CacheConfiguration in org.ehcache.spi.resilience
Methods in org.ehcache.spi.resilience with parameters of type CacheConfiguration Modifier and Type Method Description <K,V>
ResilienceStrategy<K,V>ResilienceStrategyProvider. createResilienceStrategy(java.lang.String alias, CacheConfiguration<K,V> configuration, RecoveryStore<K> recoveryStore)Creates aResilienceStrategyfor theCachewith the given alias and configuration using the givenRecoveryStore.<K,V>
ResilienceStrategy<K,V>ResilienceStrategyProvider. createResilienceStrategy(java.lang.String alias, CacheConfiguration<K,V> configuration, RecoveryStore<K> recoveryStore, CacheLoaderWriter<? super K,V> loaderWriter)Creates aResilienceStrategyfor theCachewith the given alias and configuration using the givenRecoveryStoreandCacheLoaderWriter
-