接口 LockingStrategy
-
- 所有已知实现类:
AbstractSelectLockingStrategy,OptimisticForceIncrementLockingStrategy,OptimisticLockingStrategy,PessimisticForceIncrementLockingStrategy,PessimisticReadSelectLockingStrategy,PessimisticReadUpdateLockingStrategy,PessimisticWriteSelectLockingStrategy,PessimisticWriteUpdateLockingStrategy,SelectLockingStrategy,UpdateLockingStrategy
public interface LockingStrategyA strategy abstraction for how locks are obtained in the underlying database. All locking provided implementations assume the underlying database supports (and that the connection is in) at least read-committed transaction isolation. The most glaring exclusion to this is HSQLDB which only offers support for READ_UNCOMMITTED isolation.- 从以下版本开始:
- 3.2
- 作者:
- Steve Ebersole
- 另请参阅:
Dialect.getLockingStrategy(org.hibernate.persister.entity.Lockable, org.hibernate.LockMode)
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 voidlock(Serializable id, Object version, Object object, int timeout, SharedSessionContractImplementor session)Acquire an appropriate type of lock on the underlying data that will endure until the end of the current transaction.
-
-
-
方法详细资料
-
lock
void lock(Serializable id, Object version, Object object, int timeout, SharedSessionContractImplementor session) throws StaleObjectStateException, LockingStrategyException
Acquire an appropriate type of lock on the underlying data that will endure until the end of the current transaction.- 参数:
id- The id of the row to be lockedversion- The current version (or null if not versioned)object- The object logically being locked (currently not used)timeout- timeout in milliseconds, 0 = no wait, -1 = wait indefinitelysession- The session from which the lock request originated- 抛出:
StaleObjectStateException- Indicates an inability to locate the database row as part of acquiring the requested lock.LockingStrategyException- Indicates a failure in the lock attempt
-
-