K
- Type of the keyV
- Type of the valuepublic class PerItemEvictionStrategyCache<K,V> extends Object
Instead of storing directly the value in the backing Map, it requires the consumer to provide a value factory (a Callable). A new FutureTask encapsulates the callable, is executed and is placed inside a ConcurrentHashMap if absent.
The final behavior is that, even if two concurrent Threads are borrowing an object from the cache, given that they provide an equivalent value factory, the first one will compute the value while the other will get the result from the Future (and will wait until the result is computed or a timeout occurs).
Constructor and Description |
---|
PerItemEvictionStrategyCache(ScheduledExecutorService executorService,
AsyncFunction<V,Duration,Exception> defaultTimeoutFunction)
Build a new
PerItemEvictionStrategyCache using the given scheduled executor. |
PerItemEvictionStrategyCache(ScheduledExecutorService executorService,
Duration defaultTimeout)
Build a new
PerItemEvictionStrategyCache using the given scheduled executor. |
Modifier and Type | Method and Description |
---|---|
void |
clear()
Clean-up the cache entries.
|
void |
evict(K key)
Evict a cached value from the cache.
|
Duration |
getMaxTimeout()
Gets the maximum timeout (can be null).
|
V |
getValue(K key,
Callable<V> callable)
Borrow (and create before hand if absent) a cache entry.
|
V |
getValue(K key,
Callable<V> callable,
AsyncFunction<V,Duration,Exception> expire)
Borrow (and create before hand if absent) a cache entry.
|
boolean |
isEmpty()
Returns whether this cache is empty or not.
|
void |
setMaxTimeout(Duration maxTimeout)
Sets the maximum timeout.
|
int |
size()
Returns the number of cached values.
|
public PerItemEvictionStrategyCache(ScheduledExecutorService executorService, Duration defaultTimeout)
PerItemEvictionStrategyCache
using the given scheduled executor.executorService
- scheduled executor for registering expiration callbacks.defaultTimeout
- the default cache entry timeoutpublic PerItemEvictionStrategyCache(ScheduledExecutorService executorService, AsyncFunction<V,Duration,Exception> defaultTimeoutFunction)
PerItemEvictionStrategyCache
using the given scheduled executor.executorService
- scheduled executor for registering expiration callbacks.defaultTimeoutFunction
- the function that will compute the cache entry timeout (must not be null)
the default timeout to cache the entriespublic V getValue(K key, Callable<V> callable) throws InterruptedException, ExecutionException
key
- entry keycallable
- cached value factoryInterruptedException
- if the current thread was interrupted while waitingExecutionException
- if the cached value computation threw an exceptionpublic V getValue(K key, Callable<V> callable, AsyncFunction<V,Duration,Exception> expire) throws InterruptedException, ExecutionException
key
- entry keycallable
- cached value factoryexpire
- function to override the global cache's timeoutInterruptedException
- if the current thread was interrupted while waitingExecutionException
- if the cached value computation threw an exceptionpublic void clear()
public int size()
public boolean isEmpty()
public void evict(K key)
key
- the entry keypublic Duration getMaxTimeout()
public void setMaxTimeout(Duration maxTimeout)
maxTimeout
- the maximum timeout to use.Copyright © 2010-2018, ForgeRock All Rights Reserved.