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 withkey
in 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#getUnchecked
is 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
CacheLoader
will callCacheLoader.load(K)
to load new values into the cache. Newly loaded values are added to the cache usingCache.asMap().putIfAbsent
after loading has completed; if another value was associated withkey
while 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
#getUnchecked
over this method.- Throws:
ExecutionException
- if a checked exception was thrown while loading the value. (ExecutionException
is 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:
apply
in interfaceFunction<K,
V> - Throws:
UncheckedExecutionException
- if an exception was thrown while loading the value. (As described in the documentation for#getUnchecked
,LoadingCache
should be used as aFunction
only with cache loaders that throw only unchecked exceptions.)
-
Function
interface; useget(K)
or#getUnchecked
instead.