Uses of Interface
org.ehcache.spi.copy.Copier
-
Packages that use Copier Package Description org.ehcache.config CacheManager configuration,Cache configurationand other configuration classes.org.ehcache.spi.copy CopierSPI in Ehcache. -
-
Uses of Copier in org.ehcache.config
Methods in org.ehcache.config with parameters of type Copier Modifier and Type Method Description BFluentCacheConfigurationBuilder. withKeyCopier(Copier<K> keyCopier)Adds by-value semantics using the providedCopierfor the key on heap.BFluentCacheConfigurationBuilder. withValueCopier(Copier<V> valueCopier)Adds by-value semantics using the providedCopierfor the value on heap.Method parameters in org.ehcache.config with type arguments of type Copier Modifier and Type Method Description BFluentCacheConfigurationBuilder. withKeyCopier(java.lang.Class<? extends Copier<K>> keyCopierClass)Adds by-value semantics using the providedCopierclass for the key on heap.BFluentCacheConfigurationBuilder. withValueCopier(java.lang.Class<? extends Copier<V>> valueCopierClass)Adds by-value semantics using the providedCopierclass for the value on heap. -
Uses of Copier in org.ehcache.spi.copy
Methods in org.ehcache.spi.copy that return Copier Modifier and Type Method Description <T> Copier<T>CopyProvider. createKeyCopier(java.lang.Class<T> clazz, Serializer<T> serializer, ServiceConfiguration<?,?>... configs)Creates a keyCopierwith the given parameters.<T> Copier<T>CopyProvider. createValueCopier(java.lang.Class<T> clazz, Serializer<T> serializer, ServiceConfiguration<?,?>... configs)Creates a valueCopierwith the given parameters.Methods in org.ehcache.spi.copy with parameters of type Copier Modifier and Type Method Description voidCopyProvider. releaseCopier(Copier<?> copier)Releases the providedCopierinstance.
-