public interface AccessDelegate
EntityRegionAccessStrategy
and CollectionRegionAccessStrategy
implementations.Modifier and Type | Method and Description |
---|---|
boolean |
afterInsert(SessionImplementor session,
Object key,
Object value,
Object version)
Called after an item has been inserted (after the transaction completes),
instead of calling release().
|
boolean |
afterUpdate(SessionImplementor session,
Object key,
Object value,
Object currentVersion,
Object previousVersion,
SoftLock lock)
Called after an item has been updated (after the transaction completes),
instead of calling release().
|
void |
evict(Object key)
Forcibly evict an item from the cache immediately without regard for transaction
isolation.
|
void |
evictAll()
Forcibly evict all items from the cache immediately without regard for transaction
isolation.
|
Object |
get(SessionImplementor session,
Object key,
long txTimestamp) |
boolean |
insert(SessionImplementor session,
Object key,
Object value,
Object version)
Called after an item has been inserted (before the transaction completes),
instead of calling evict().
|
boolean |
putFromLoad(SessionImplementor session,
Object key,
Object value,
long txTimestamp,
Object version)
Attempt to cache an object, after loading from the database.
|
boolean |
putFromLoad(SessionImplementor session,
Object key,
Object value,
long txTimestamp,
Object version,
boolean minimalPutOverride)
Attempt to cache an object, after loading from the database, explicitly
specifying the minimalPut behavior.
|
void |
remove(SessionImplementor session,
Object key)
Called after an item has become stale (before the transaction completes).
|
void |
removeAll()
Called to evict data from the entire region
|
void |
unlockItem(SessionImplementor session,
Object key)
Called when we have finished the attempted update/delete (which may or
may not have been successful), after transaction completion.
|
boolean |
update(SessionImplementor session,
Object key,
Object value,
Object currentVersion,
Object previousVersion)
Called after an item has been updated (before the transaction completes),
instead of calling evict().
|
Object get(SessionImplementor session, Object key, long txTimestamp) throws CacheException
CacheException
boolean putFromLoad(SessionImplementor session, Object key, Object value, long txTimestamp, Object version)
session
- Current sessionkey
- The item keyvalue
- The itemtxTimestamp
- a timestamp prior to the transaction start timeversion
- the item version numberboolean putFromLoad(SessionImplementor session, Object key, Object value, long txTimestamp, Object version, boolean minimalPutOverride) throws CacheException
session
- Current session.key
- The item keyvalue
- The itemtxTimestamp
- a timestamp prior to the transaction start timeversion
- the item version numberminimalPutOverride
- Explicit minimalPut flagCacheException
- Propogated from underlying Region
boolean insert(SessionImplementor session, Object key, Object value, Object version) throws CacheException
session
- Current sessionkey
- The item keyvalue
- The itemversion
- The item's version valueCacheException
- if the insert failsboolean update(SessionImplementor session, Object key, Object value, Object currentVersion, Object previousVersion) throws CacheException
session
- Current sessionkey
- The item keyvalue
- The itemcurrentVersion
- The item's current version valuepreviousVersion
- The item's previous version valueCacheException
- if the update failsvoid remove(SessionImplementor session, Object key) throws CacheException
session
- Current sessionkey
- The key of the item to removeCacheException
- if removing the cached item failsvoid removeAll() throws CacheException
CacheException
- if eviction the region failsvoid evict(Object key) throws CacheException
key
- The key of the item to removeCacheException
- if evicting the item failsvoid evictAll() throws CacheException
CacheException
- if evicting items failsvoid unlockItem(SessionImplementor session, Object key) throws CacheException
session
- key
- The item keyCacheException
- Propogated from underlying Region
boolean afterInsert(SessionImplementor session, Object key, Object value, Object version)
session
- key
- The item keyvalue
- The itemversion
- The item's version valueCacheException
- Propagated from underlying Region
boolean afterUpdate(SessionImplementor session, Object key, Object value, Object currentVersion, Object previousVersion, SoftLock lock)
session
- key
- The item keyvalue
- The itemcurrentVersion
- The item's current version valuepreviousVersion
- The item's previous version valuelock
- The lock previously obtained from #lockItem
CacheException
- Propagated from underlying Region
Copyright © 2001-2017 Red Hat, Inc. All Rights Reserved.