Uses of Interface
org.ehcache.spi.loaderwriter.CacheLoaderWriter
-
Packages that use CacheLoaderWriter Package Description org.ehcache.config CacheManager configuration,Cache configurationand other configuration classes.org.ehcache.spi.loaderwriter CacheLoaderWriterSPI for aCache.org.ehcache.spi.resilience ResilienceStrategyAPI of aCache. -
-
Uses of CacheLoaderWriter in org.ehcache.config
Methods in org.ehcache.config with parameters of type CacheLoaderWriter Modifier and Type Method Description BFluentCacheConfigurationBuilder. withLoaderWriter(CacheLoaderWriter<K,V> loaderWriter)Sets theCacheLoaderWriterin the returned builder.Method parameters in org.ehcache.config with type arguments of type CacheLoaderWriter Modifier and Type Method Description BFluentCacheConfigurationBuilder. withLoaderWriter(java.lang.Class<CacheLoaderWriter<K,V>> loaderWriterClass, java.lang.Object... arguments)Sets theCacheLoaderWriter(using a class and constructor arguments) in the returned builder. -
Uses of CacheLoaderWriter in org.ehcache.spi.loaderwriter
Methods in org.ehcache.spi.loaderwriter that return CacheLoaderWriter 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.<K,V>
CacheLoaderWriter<K,V>WriteBehindProvider. createWriteBehindLoaderWriter(CacheLoaderWriter<K,V> cacheLoaderWriter, WriteBehindConfiguration<?> configuration)Creates write-behind decoratedCacheLoaderWriteraccording to the given configuration.Methods in org.ehcache.spi.loaderwriter with parameters of type CacheLoaderWriter Modifier and Type Method Description <K,V>
CacheLoaderWriter<K,V>WriteBehindProvider. createWriteBehindLoaderWriter(CacheLoaderWriter<K,V> cacheLoaderWriter, WriteBehindConfiguration<?> configuration)Creates write-behind decoratedCacheLoaderWriteraccording to the given configuration.voidCacheLoaderWriterProvider. releaseCacheLoaderWriter(java.lang.String alias, CacheLoaderWriter<?,?> cacheLoaderWriter)Releases aCacheLoaderWriterwhen the associatedCacheis finished with it.voidWriteBehindProvider. releaseWriteBehindLoaderWriter(CacheLoaderWriter<?,?> cacheLoaderWriter)Releases a write-behind decorator when the associatedCacheis finished with it. -
Uses of CacheLoaderWriter in org.ehcache.spi.resilience
Methods in org.ehcache.spi.resilience with parameters of type CacheLoaderWriter Modifier and Type Method Description <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
-