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 interfaceAsyncLoadingCache<K,V>A semi-persistent mapping from keys to values.(package private) interfaceLocalAsyncCache<K,V>This class provides a skeletal implementation of theAsyncCacheinterface 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 classBoundedLocalCache.BoundedLocalAsyncCache<K,V>(package private) static classBoundedLocalCache.BoundedLocalAsyncLoadingCache<K,V>(package private) classLocalAsyncLoadingCache<K,V>This class provides a skeletal implementation of theAsyncLoadingCacheinterface to minimize the effort required to implement aLocalCache.(package private) static classUnboundedLocalCache.UnboundedLocalAsyncCache<K,V>(package private) static classUnboundedLocalCache.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.
-