public class EhcacheTransactionalDataRegion extends EhcacheDataRegion implements org.hibernate.cache.TransactionalDataRegion
This is the common superclass entity and collection regions.
Modifier and Type | Field and Description |
---|---|
protected org.hibernate.cache.CacheDataDescription |
metadata
Metadata associated with the objects stored in the region.
|
protected org.hibernate.cfg.Settings |
settings
Hibernate settings associated with the persistence unit.
|
accessStrategyFactory, cache
Modifier and Type | Method and Description |
---|---|
void |
clear()
Remove all mapping from this cache region.
|
Object |
get(Object key)
Get the value mapped to this key, or null if no value is mapped to this key.
|
org.hibernate.cache.CacheDataDescription |
getCacheDataDescription() |
org.hibernate.cfg.Settings |
getSettings()
Return the hibernate settings
|
boolean |
isTransactionAware() |
boolean |
locksAreIndependentOfCache()
Returns
true if the locks used by the locking methods of this region are the independent of the cache. |
void |
put(Object key,
Object value)
Map the given value to the given key, replacing any existing mapping for this key
this unpins the key in the cache should it be currently pinned
|
void |
putEternal(Object key,
Object value)
Map the given value to the given key, replacing any existing mapping for this key,
pinning the key in the cache
|
void |
readLock(Object key)
Attempts to read lock the mapping for the given key.
|
void |
readUnlock(Object key)
Attempts to read unlock the mapping for the given key.
|
void |
remove(Object key)
Remove the mapping for this key (if any exists).
|
void |
writeLock(Object key)
Attempts to write lock the mapping for the given key.
|
void |
writeUnlock(Object key)
Attempts to write unlock the mapping for the given key.
|
contains, destroy, getEhcache, getElementCountInMemory, getElementCountOnDisk, getName, getSizeInMemory, getTimeout, nextTimestamp, toMap
protected final org.hibernate.cfg.Settings settings
protected final org.hibernate.cache.CacheDataDescription metadata
public org.hibernate.cfg.Settings getSettings()
public boolean isTransactionAware()
isTransactionAware
in interface org.hibernate.cache.TransactionalDataRegion
public org.hibernate.cache.CacheDataDescription getCacheDataDescription()
getCacheDataDescription
in interface org.hibernate.cache.TransactionalDataRegion
public final Object get(Object key)
public final void put(Object key, Object value) throws org.hibernate.cache.CacheException
org.hibernate.cache.CacheException
public final void putEternal(Object key, Object value) throws org.hibernate.cache.CacheException
org.hibernate.cache.CacheException
public final void remove(Object key) throws org.hibernate.cache.CacheException
org.hibernate.cache.CacheException
public final void clear() throws org.hibernate.cache.CacheException
org.hibernate.cache.CacheException
public final void writeLock(Object key)
public final void writeUnlock(Object key)
public final void readLock(Object key)
public final void readUnlock(Object key)
public final boolean locksAreIndependentOfCache()
true
if the locks used by the locking methods of this region are the independent of the cache.
Independent locks are not locked by the cache when the cache is accessed directly. This means that for an independent lock lock holds taken through a region method will not block direct access to the cache via other means.
Copyright © 2003–2016 Terracotta, Inc.. All rights reserved.