Uses of Interface
com.github.benmanes.caffeine.cache.AsyncCache
-
Packages that use AsyncCache Package Description com.github.benmanes.caffeine.cache This package contains caching utilities. -
-
Uses of AsyncCache in com.github.benmanes.caffeine.cache
Subinterfaces of AsyncCache in com.github.benmanes.caffeine.cache Modifier and Type Interface Description interface
AsyncLoadingCache<K,V>
A semi-persistent mapping from keys to values.(package private) interface
LocalAsyncCache<K,V>
This class provides a skeletal implementation of theAsyncCache
interface to minimize the effort required to implement aLocalCache
.Classes in com.github.benmanes.caffeine.cache that implement AsyncCache Modifier and Type Class Description (package private) static class
BoundedLocalCache.BoundedLocalAsyncCache<K,V>
(package private) static class
BoundedLocalCache.BoundedLocalAsyncLoadingCache<K,V>
(package private) class
LocalAsyncLoadingCache<K,V>
This class provides a skeletal implementation of theAsyncLoadingCache
interface to minimize the effort required to implement aLocalCache
.(package private) static class
UnboundedLocalCache.UnboundedLocalAsyncCache<K,V>
(package private) static class
UnboundedLocalCache.UnboundedLocalAsyncLoadingCache<K,V>
Methods in com.github.benmanes.caffeine.cache that return AsyncCache Modifier and Type Method Description <K1 extends K,V1 extends V>
@NonNull AsyncCache<K1,V1>Caffeine. buildAsync()
Builds a cache which does not automatically load values when keys are requested unless a mapping function is provided.
-