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) 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) CacheWriter<? super K,? super V>
Caffeine. writer
(package private) 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>
CacheWriter<K,V>CacheWriter. disabledWriter()
Returns a writer that does nothing.(package private) <K1 extends K,V1 extends V>
CacheWriter<K1,V1>Caffeine. getCacheWriter()
Methods in com.github.benmanes.caffeine.cache with parameters of type CacheWriter Modifier and Type Method Description <K1 extends K,V1 extends V>
Caffeine<K1,V1>Caffeine. writer(CacheWriter<? super K1,? super V1> writer)
Specifies a writer instance that caches should notify each time an entry is explicitly created or modified, or removed for any reason.
-