public final class CacheImpl<K,V> extends Object implements Cache<K,V>
| Constructor and Description |
|---|
CacheImpl(CurrentTime currentTime,
long timeoutMillis)
Construct an expire-after-write cache.
|
| Modifier and Type | Method and Description |
|---|---|
V |
get(K key,
Callable<V> valueFetcher)
Returns a value for the key if cached; otherwise creates, caches and returns.
|
void |
invalidate(K key)
Invalidates a key from the cache.
|
@Inject public CacheImpl(CurrentTime currentTime, long timeoutMillis)
currentTime - class that returns the current time for timeout purposestimeoutMillis - a cache entry timeout after writepublic V get(K key, Callable<V> valueFetcher) throws ExecutionException
Cacheget in interface Cache<K,V>key - a keyvalueFetcher - a value fetcherExecutionExceptionpublic void invalidate(K key)
Cacheinvalidate in interface Cache<K,V>key - a keyCopyright © 2016 The Apache Software Foundation. All rights reserved.