Uses of Interface
net.sf.ehcache.transaction.SoftLock
-
Packages that use SoftLock Package Description net.sf.ehcache.transaction This package contains classes for controlling cache operations for transactional use.net.sf.ehcache.transaction.local This package contains the local transactions subsystem. -
-
Uses of SoftLock in net.sf.ehcache.transaction
Classes in net.sf.ehcache.transaction that implement SoftLock Modifier and Type Class Description classReadCommittedSoftLockImplA SoftLock implementation with Read-Committed isolation levelMethods in net.sf.ehcache.transaction that return SoftLock Modifier and Type Method Description SoftLockAbstractSoftLockManager. findSoftLockById(SoftLockID softLockId)Find a previously created and still existing soft lockSoftLockSoftLockManager. findSoftLockById(SoftLockID softLockId)Find a previously created and still existing soft lockSoftLockSoftLockFactory. newSoftLock(SoftLockManager manager, java.lang.Object key)Construct a new softlock to be managed by the given manager for a specific key.Methods in net.sf.ehcache.transaction that return types with arguments of type SoftLock Modifier and Type Method Description java.util.Set<SoftLock>AbstractSoftLockManager. collectAllSoftLocksForTransactionID(TransactionID transactionID)Get a the soft locks of the specified transaction IDjava.util.Set<SoftLock>SoftLockManager. collectAllSoftLocksForTransactionID(TransactionID transactionID)Get a the soft locks of the specified transaction IDprotected abstract java.util.concurrent.ConcurrentMap<SoftLockID,SoftLock>AbstractSoftLockManager. getAllLocks()Return the map of all soft locks.protected java.util.concurrent.ConcurrentMap<SoftLockID,SoftLock>SoftLockManagerImpl. getAllLocks()Methods in net.sf.ehcache.transaction with parameters of type SoftLock Modifier and Type Method Description voidAbstractSoftLockManager. clearSoftLock(SoftLock softLock)Clear a soft lockvoidSoftLockManager. clearSoftLock(SoftLock softLock)Clear a soft lock -
Uses of SoftLock in net.sf.ehcache.transaction.local
Methods in net.sf.ehcache.transaction.local that return types with arguments of type SoftLock Modifier and Type Method Description java.util.List<SoftLock>LocalTransactionContext. getSoftLocksForCache(java.lang.String cacheName)Get all soft locks registered in this context for a specific cacheMethods in net.sf.ehcache.transaction.local with parameters of type SoftLock Modifier and Type Method Description voidLocalTransactionContext. registerSoftLock(java.lang.String cacheName, LocalTransactionStore store, SoftLock softLock)Register a soft lock in the contextvoidLocalTransactionContext. updateSoftLock(java.lang.String cacheName, SoftLock softLock)Update a soft lock already registered in the context
-