Package org.cache2k.jcache.provider
Class JCacheAdapter<K,V>
- java.lang.Object
-
- org.cache2k.jcache.provider.JCacheAdapter<K,V>
-
- All Implemented Interfaces:
Closeable
,AutoCloseable
,Iterable<javax.cache.Cache.Entry<K,V>>
,javax.cache.Cache<K,V>
public class JCacheAdapter<K,V> extends Object implements javax.cache.Cache<K,V>
Forward cache operations to cache2k cache implementation.- Author:
- Jens Wilke
-
-
Field Summary
Fields Modifier and Type Field Description protected org.cache2k.core.api.InternalCache<K,V>
cache
protected AtomicLong
iterationHitCorrectionCounter
protected boolean
jmxEnabled
protected boolean
jmxStatisticsEnabled
protected boolean
readThrough
-
Constructor Summary
Constructors Constructor Description JCacheAdapter(JCacheManagerAdapter manager, org.cache2k.Cache<K,V> cache, Class<K> keyType, Class<V> valueType, boolean storeByValue, boolean readThrough, boolean loaderConfigured, EventHandling<K,V> eventHandling)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
void
close()
boolean
containsKey(K key)
void
deregisterCacheEntryListener(javax.cache.configuration.CacheEntryListenerConfiguration<K,V> cfg)
V
get(K k)
Map<K,V>
getAll(Set<? extends K> keys)
V
getAndPut(K key, V value)
V
getAndRemove(K key)
V
getAndReplace(K key, V value)
javax.cache.CacheManager
getCacheManager()
<C extends javax.cache.configuration.Configuration<K,V>>
CgetConfiguration(Class<C> type)
String
getName()
<T> T
invoke(K key, javax.cache.processor.EntryProcessor<K,V,T> entryProcessor, Object... arguments)
<T> Map<K,javax.cache.processor.EntryProcessorResult<T>>
invokeAll(Set<? extends K> keys, javax.cache.processor.EntryProcessor<K,V,T> entryProcessor, Object... arguments)
boolean
isClosed()
Iterator<javax.cache.Cache.Entry<K,V>>
iterator()
Iterate with the help of cache2k key iterator.void
loadAll(Set<? extends K> keys, boolean replaceExistingValues, javax.cache.integration.CompletionListener completionListener)
void
put(K k, V v)
void
putAll(Map<? extends K,? extends V> map)
boolean
putIfAbsent(K key, V value)
void
registerCacheEntryListener(javax.cache.configuration.CacheEntryListenerConfiguration<K,V> cfg)
boolean
remove(K key)
boolean
remove(K key, V oldValue)
void
removeAll()
void
removeAll(Set<? extends K> keys)
boolean
replace(K key, V value)
boolean
replace(K key, V oldValue, V newValue)
String
toString()
<T> T
unwrap(Class<T> clazz)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Field Detail
-
readThrough
protected final boolean readThrough
-
iterationHitCorrectionCounter
protected final AtomicLong iterationHitCorrectionCounter
-
jmxStatisticsEnabled
protected volatile boolean jmxStatisticsEnabled
-
jmxEnabled
protected volatile boolean jmxEnabled
-
-
Constructor Detail
-
JCacheAdapter
public JCacheAdapter(JCacheManagerAdapter manager, org.cache2k.Cache<K,V> cache, Class<K> keyType, Class<V> valueType, boolean storeByValue, boolean readThrough, boolean loaderConfigured, EventHandling<K,V> eventHandling)
-
-
Method Detail
-
containsKey
public boolean containsKey(K key)
-
loadAll
public void loadAll(Set<? extends K> keys, boolean replaceExistingValues, javax.cache.integration.CompletionListener completionListener)
-
getConfiguration
public <C extends javax.cache.configuration.Configuration<K,V>> C getConfiguration(Class<C> type)
-
invoke
public <T> T invoke(K key, javax.cache.processor.EntryProcessor<K,V,T> entryProcessor, Object... arguments) throws javax.cache.processor.EntryProcessorException
-
invokeAll
public <T> Map<K,javax.cache.processor.EntryProcessorResult<T>> invokeAll(Set<? extends K> keys, javax.cache.processor.EntryProcessor<K,V,T> entryProcessor, Object... arguments)
-
getCacheManager
public javax.cache.CacheManager getCacheManager()
-
close
public void close()
-
unwrap
public <T> T unwrap(Class<T> clazz)
-
registerCacheEntryListener
public void registerCacheEntryListener(javax.cache.configuration.CacheEntryListenerConfiguration<K,V> cfg)
-
deregisterCacheEntryListener
public void deregisterCacheEntryListener(javax.cache.configuration.CacheEntryListenerConfiguration<K,V> cfg)
-
iterator
public Iterator<javax.cache.Cache.Entry<K,V>> iterator()
Iterate with the help of cache2k key iterator.
-
-