Uses of Interface
com.github.benmanes.caffeine.cache.CacheWriter
-
Packages that use CacheWriter Package Description com.github.benmanes.caffeine.cache This package contains caching utilities. -
-
Uses of CacheWriter in com.github.benmanes.caffeine.cache
Classes in com.github.benmanes.caffeine.cache that implement CacheWriter Modifier and Type Class Description (package private) static class
Caffeine.CacheWriterAdapter<K,V>
(package private) class
DisabledWriter
Fields in com.github.benmanes.caffeine.cache declared as CacheWriter Modifier and Type Field Description (package private) CacheWriter<K,V>
BoundedLocalCache. writer
(package private) @Nullable CacheWriter<? super K,? super V>
Caffeine. writer
(package private) @Nullable CacheWriter<?,?>
SerializationProxy. writer
(package private) CacheWriter<K,V>
UnboundedLocalCache. writer
Methods in com.github.benmanes.caffeine.cache that return CacheWriter Modifier and Type Method Description static <K,V>
@NonNull CacheWriter<K,V>CacheWriter. disabledWriter()
Deprecated.Returns a writer that does nothing.(package private) <K1 extends K,V1 extends V>
CacheWriter<K1,V1>Caffeine. getCacheWriter(boolean async)
Methods in com.github.benmanes.caffeine.cache with parameters of type CacheWriter Modifier and Type Method Description <K1 extends K,V1 extends V>
@NonNull Caffeine<K1,V1>Caffeine. writer(@NonNull CacheWriter<? super K1,? super V1> writer)
Deprecated.Scheduled for removal in version 3.0.0.
-