Package ubic.gemma.persistence.cache
Class EhcacheKeyLock
- java.lang.Object
-
- ubic.gemma.persistence.cache.EhcacheKeyLock
-
- All Implemented Interfaces:
CacheKeyLock
public class EhcacheKeyLock extends Object implements CacheKeyLock
- Author:
- poirigui
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface ubic.gemma.persistence.cache.CacheKeyLock
CacheKeyLock.LockAcquisition
-
-
Constructor Summary
Constructors Constructor Description EhcacheKeyLock(net.sf.ehcache.Ehcache cache, Object key, boolean readOnly)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isReadOnly()
Indicate if this lock is read-only.CacheKeyLock.LockAcquisition
lock()
Acquire a lock on the cache key.CacheKeyLock.LockAcquisition
lockInterruptibly()
Acquire a lock interruptibly on a cache key.void
setLockCheckIntervalMillis(long lockCheckIntervalMillis)
Set the interval to check for lock acquisition in milliseconds whenlockInterruptibly()
is used.
-
-
-
Constructor Detail
-
EhcacheKeyLock
public EhcacheKeyLock(net.sf.ehcache.Ehcache cache, Object key, boolean readOnly)
-
-
Method Detail
-
isReadOnly
public boolean isReadOnly()
Description copied from interface:CacheKeyLock
Indicate if this lock is read-only.- Specified by:
isReadOnly
in interfaceCacheKeyLock
-
setLockCheckIntervalMillis
public void setLockCheckIntervalMillis(long lockCheckIntervalMillis)
Set the interval to check for lock acquisition in milliseconds whenlockInterruptibly()
is used.This defaults to 30000 ms.
-
lock
public CacheKeyLock.LockAcquisition lock()
Description copied from interface:CacheKeyLock
Acquire a lock on the cache key.- Specified by:
lock
in interfaceCacheKeyLock
-
lockInterruptibly
public CacheKeyLock.LockAcquisition lockInterruptibly() throws InterruptedException
Description copied from interface:CacheKeyLock
Acquire a lock interruptibly on a cache key.- Specified by:
lockInterruptibly
in interfaceCacheKeyLock
- Throws:
InterruptedException
- if the current thread was interrupted prior to or while waiting on the lock
-
-