Interface LoadingCache<K,V>
Implementations of this interface are expected to be thread-safe, and can be safely accessed by multiple concurrent threads.
When evaluated as a Function, a cache yields the same result as invoking
#getUnchecked.
Note that while this class is still annotated as Beta, the API is frozen from a
consumer's standpoint. In other words existing methods are all considered non-Beta and
won't be changed without going through an 18 month deprecation cycle; however new methods may be
added at any time.
- Since:
- 11.0
- Author:
- Charles Fry
-
Method Summary
Methods inherited from interface org.glassfish.jersey.internal.guava.Cache
getIfPresent, put
-
Method Details
-
get
Returns the value associated withkeyin this cache, first loading that value if necessary. No observable state associated with this cache is modified until loading completes.If another call to
get(K)or#getUncheckedis currently loading the value forkey, simply waits for that thread to finish and returns its loaded value. Note that multiple threads can concurrently load values for distinct keys.Caches loaded by a
CacheLoaderwill callCacheLoader.load(K)to load new values into the cache. Newly loaded values are added to the cache usingCache.asMap().putIfAbsentafter loading has completed; if another value was associated withkeywhile the new value was loading then a removal notification will be sent for the new value.If the cache loader associated with this cache is known not to throw checked exceptions, then prefer
#getUncheckedover this method.- Throws:
ExecutionException- if a checked exception was thrown while loading the value. (ExecutionExceptionis thrown even if computation was interrupted by anInterruptedException.)UncheckedExecutionException- if an unchecked exception was thrown while loading the valueExecutionError- if an error was thrown while loading the value
-
apply
Deprecated.- Specified by:
applyin interfaceFunction<K,V> - Throws:
UncheckedExecutionException- if an exception was thrown while loading the value. (As described in the documentation for#getUnchecked,LoadingCacheshould be used as aFunctiononly with cache loaders that throw only unchecked exceptions.)
-
Functioninterface; useget(K)or#getUncheckedinstead.