Uses of Interface
com.github.benmanes.caffeine.jcache.copy.Copier
-
Packages that use Copier Package Description com.github.benmanes.caffeine.jcache com.github.benmanes.caffeine.jcache.configuration com.github.benmanes.caffeine.jcache.copy -
-
Uses of Copier in com.github.benmanes.caffeine.jcache
Fields in com.github.benmanes.caffeine.jcache declared as Copier Modifier and Type Field Description (package private) Copier
CacheProxy. copier
-
Uses of Copier in com.github.benmanes.caffeine.jcache.configuration
Fields in com.github.benmanes.caffeine.jcache.configuration with type parameters of type Copier Modifier and Type Field Description private javax.cache.configuration.Factory<Copier>
CaffeineConfiguration. copierFactory
private static javax.cache.configuration.Factory<Copier>
CaffeineConfiguration. JAVA_COPIER
Methods in com.github.benmanes.caffeine.jcache.configuration that return types with arguments of type Copier Modifier and Type Method Description javax.cache.configuration.Factory<Copier>
CaffeineConfiguration. getCopierFactory()
Returns theFactory
for theCopier
to be used for the cache.Method parameters in com.github.benmanes.caffeine.jcache.configuration with type arguments of type Copier Modifier and Type Method Description void
CaffeineConfiguration. setCopierFactory(javax.cache.configuration.Factory<Copier> factory)
Set theFactory
for theCopier
. -
Uses of Copier in com.github.benmanes.caffeine.jcache.copy
Classes in com.github.benmanes.caffeine.jcache.copy that implement Copier Modifier and Type Class Description class
AbstractCopier<A>
A skeleton implementation where subclasses provide the serialization strategy.(package private) class
IdentityCopier
class
JavaSerializationCopier
A strategy that uses Java serialization if a fast path approach is not applicable.Methods in com.github.benmanes.caffeine.jcache.copy that return Copier Modifier and Type Method Description static Copier
Copier. identity()
-