Uses of Interface
org.ehcache.spi.serialization.Serializer
-
Packages that use Serializer Package Description org.ehcache.config CacheManager configuration,Cache configurationand other configuration classes.org.ehcache.spi.copy CopierSPI in Ehcache.org.ehcache.spi.serialization SerializerSPI in Ehcache. -
-
Uses of Serializer in org.ehcache.config
Methods in org.ehcache.config with parameters of type Serializer Modifier and Type Method Description BFluentCacheConfigurationBuilder. withKeySerializer(Serializer<K> keySerializer)Sets theSerializerfor cache keys in the returned builder.BFluentCacheConfigurationBuilder. withValueSerializer(Serializer<V> valueSerializer)Sets theSerializerfor cache values in the returned builder.Method parameters in org.ehcache.config with type arguments of type Serializer Modifier and Type Method Description BFluentCacheConfigurationBuilder. withKeySerializer(java.lang.Class<? extends Serializer<K>> keySerializerClass)Sets theSerializerclass for cache keys in the returned builder.BFluentCacheConfigurationBuilder. withValueSerializer(java.lang.Class<? extends Serializer<V>> valueSerializerClass)Sets theSerializerclass for cache values in the returned builder. -
Uses of Serializer in org.ehcache.spi.copy
Methods in org.ehcache.spi.copy with parameters of type Serializer 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. -
Uses of Serializer in org.ehcache.spi.serialization
Subinterfaces of Serializer in org.ehcache.spi.serialization Modifier and Type Interface Description interfaceStatefulSerializer<T>Implementations of this interface can have their state maintained in aStateRepository.Methods in org.ehcache.spi.serialization that return Serializer Modifier and Type Method Description <T> Serializer<T>SerializationProvider. createKeySerializer(java.lang.Class<T> clazz, java.lang.ClassLoader classLoader, ServiceConfiguration<?,?>... configs)Creates a keySerializerwith the given parameters.<T> Serializer<T>SerializationProvider. createValueSerializer(java.lang.Class<T> clazz, java.lang.ClassLoader classLoader, ServiceConfiguration<?,?>... configs)Creates a valueSerializerwith the given parameters.Methods in org.ehcache.spi.serialization with parameters of type Serializer Modifier and Type Method Description voidSerializationProvider. releaseSerializer(Serializer<?> serializer)Releases the givenSerializerinstance.
-