Uses of Interface
io.github.oberhoff.distributedcaffeine.serializer.Serializer
-
Packages that use Serializer Package Description io.github.oberhoff.distributedcaffeine This package contains the main classes and interfaces for configuring, constructing and using Distributed Caffeine cache instances.io.github.oberhoff.distributedcaffeine.serializer This package contains classes and interfaces providing serializing/deserializing functionality for Distributed Caffeine cache instances. -
-
Uses of Serializer in io.github.oberhoff.distributedcaffeine
Methods in io.github.oberhoff.distributedcaffeine with parameters of type Serializer Modifier and Type Method Description DistributedCaffeine.Builder<K,V>
DistributedCaffeine.Builder. withCustomKeySerializer(Serializer<K,?> keySerializer)
Specifies a custom serializer to be used for serializing key objects.DistributedCaffeine.Builder<K,V>
DistributedCaffeine.Builder. withCustomValueSerializer(Serializer<V,?> valueSerializer)
Specifies a custom serializer to be used for serializing value objects. -
Uses of Serializer in io.github.oberhoff.distributedcaffeine.serializer
Subinterfaces of Serializer in io.github.oberhoff.distributedcaffeine.serializer Modifier and Type Interface Description interface
ByteArraySerializer<T>
Interface to be used when implementing a custom serializer with byte array representation.interface
JsonSerializer<T>
Interface to be used when implementing a custom serializer with JSON representation (encoded as String or BSON).interface
StringSerializer<T>
Interface to be used when implementing a custom serializer with string representation.Classes in io.github.oberhoff.distributedcaffeine.serializer that implement Serializer Modifier and Type Class Description class
FurySerializer<T>
Implementation of a serializer with byte array representation based on Apache Fury.class
JacksonSerializer<T>
Implementation of a serializer with JSON representation (encoded as String or BSON) based on Jackson.class
JavaObjectSerializer<T>
Implementation of a serializer with byte array representation based on Java Object Serialization.
-