@Deprecated public class EhcacheReadOnlyCache extends Object
This is the Ehcache specific equivalent to Hibernate's ReadOnlyCache.
Modifier and Type | Field and Description |
---|---|
protected EhCache |
cache
Deprecated.
Ehcache instance this strategy accesses.
|
Constructor and Description |
---|
EhcacheReadOnlyCache()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
boolean |
afterInsert(Object key,
Object value,
Object version)
Deprecated.
Inserts the specified item into the cache.
|
boolean |
afterUpdate(Object key,
Object value,
Object version,
org.hibernate.cache.access.SoftLock lock)
Deprecated.
Throws UnsupportedOperationException since items in a read-only cache should not be mutated.
|
void |
clear()
Deprecated.
|
void |
destroy()
Deprecated.
|
void |
evict(Object key)
Deprecated.
A No-Op, since we are an asynchronous cache concurrency strategy.
|
Object |
get(Object key,
long timestamp)
Deprecated.
|
org.hibernate.cache.Cache |
getCache()
Deprecated.
|
String |
getRegionName()
Deprecated.
|
boolean |
insert(Object key,
Object value,
Object currentVersion)
Deprecated.
A No-Op, since we are an asynchronous cache concurrency strategy.
|
org.hibernate.cache.access.SoftLock |
lock(Object key,
Object version)
Deprecated.
Throws UnsupportedOperationException since items in a read-only cache should not be mutated.
|
boolean |
put(Object key,
Object value,
long timestamp,
Object version,
Comparator versionComparator,
boolean minimalPut)
Deprecated.
|
void |
release(Object key,
org.hibernate.cache.access.SoftLock lock)
Deprecated.
Logs an error since items in a read-only cache should not be mutated.
|
void |
remove(Object key)
Deprecated.
|
void |
setCache(org.hibernate.cache.Cache cache)
Deprecated.
|
String |
toString()
Deprecated.
|
boolean |
update(Object key,
Object value,
Object currentVersion,
Object previousVersion)
Deprecated.
Throws UnsupportedOperationException since items in a read-only cache should not be mutated.
|
protected EhCache cache
public Object get(Object key, long timestamp) throws org.hibernate.cache.CacheException
org.hibernate.cache.CacheException
public org.hibernate.cache.access.SoftLock lock(Object key, Object version) throws UnsupportedOperationException
UnsupportedOperationException
- alwayspublic boolean put(Object key, Object value, long timestamp, Object version, Comparator versionComparator, boolean minimalPut) throws org.hibernate.cache.CacheException
org.hibernate.cache.CacheException
public void release(Object key, org.hibernate.cache.access.SoftLock lock)
public boolean afterUpdate(Object key, Object value, Object version, org.hibernate.cache.access.SoftLock lock) throws UnsupportedOperationException
UnsupportedOperationException
- alwayspublic boolean afterInsert(Object key, Object value, Object version) throws org.hibernate.cache.CacheException
org.hibernate.cache.CacheException
public void evict(Object key) throws org.hibernate.cache.CacheException
org.hibernate.cache.CacheException
public boolean insert(Object key, Object value, Object currentVersion)
public boolean update(Object key, Object value, Object currentVersion, Object previousVersion) throws UnsupportedOperationException
UnsupportedOperationException
- alwayspublic final void setCache(org.hibernate.cache.Cache cache) throws org.hibernate.cache.CacheException
setCache
in interface org.hibernate.cache.CacheConcurrencyStrategy
org.hibernate.cache.CacheException
- if the underlying cache is not an Ehcachepublic final org.hibernate.cache.Cache getCache()
getCache
in interface org.hibernate.cache.CacheConcurrencyStrategy
public final String getRegionName()
getRegionName
in interface org.hibernate.cache.CacheConcurrencyStrategy
public final void remove(Object key) throws org.hibernate.cache.CacheException
remove
in interface org.hibernate.cache.CacheConcurrencyStrategy
org.hibernate.cache.CacheException
public final void clear() throws org.hibernate.cache.CacheException
clear
in interface org.hibernate.cache.CacheConcurrencyStrategy
org.hibernate.cache.CacheException
public final void destroy()
destroy
in interface org.hibernate.cache.CacheConcurrencyStrategy
Copyright © 2003-2013 Terracotta, Inc.. All Rights Reserved.