Uses of Interface
org.ehcache.spi.copy.Copier
Packages that use Copier
Package
Description
CacheManager configuration,
Cache configuration and other configuration classes.Copier SPI in Ehcache.-
Uses of Copier in org.ehcache.config
Methods in org.ehcache.config with parameters of type CopierModifier and TypeMethodDescriptionFluentCacheConfigurationBuilder.withKeyCopier(Copier<K> keyCopier) Adds by-value semantics using the providedCopierfor the key on heap.FluentCacheConfigurationBuilder.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 CopierModifier and TypeMethodDescriptionFluentCacheConfigurationBuilder.withKeyCopier(Class<? extends Copier<K>> keyCopierClass) Adds by-value semantics using the providedCopierclass for the key on heap.FluentCacheConfigurationBuilder.withValueCopier(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 CopierModifier and TypeMethodDescription<T> Copier<T> CopyProvider.createKeyCopier(Class<T> clazz, Serializer<T> serializer, ServiceConfiguration<?, ?>... configs) Creates a keyCopierwith the given parameters.<T> Copier<T> CopyProvider.createValueCopier(Class<T> clazz, Serializer<T> serializer, ServiceConfiguration<?, ?>... configs) Creates a valueCopierwith the given parameters.Methods in org.ehcache.spi.copy with parameters of type CopierModifier and TypeMethodDescriptionvoidCopyProvider.releaseCopier(Copier<?> copier) Releases the providedCopierinstance.