Uses of Interface
org.hibernate.persister.entity.Lockable
-
Packages that use Lockable Package Description org.hibernate.dialect This package abstracts over the multifarious dialects of SQL understood by the databases supported by Hibernate.org.hibernate.dialect.lock Support for Dialect-specific locking strategiesorg.hibernate.persister.entity This package abstracts persistence mechanisms for entities. -
-
Uses of Lockable in org.hibernate.dialect
Methods in org.hibernate.dialect with parameters of type Lockable Modifier and Type Method Description LockingStrategy
Dialect. getLockingStrategy(Lockable lockable, LockMode lockMode)
Get a strategy instance which knows how to acquire a database-level lock of the specified mode for this dialect.LockingStrategy
HSQLDialect. getLockingStrategy(Lockable lockable, LockMode lockMode)
For HSQLDB 2.0, this is a copy of the base class implementation.LockingStrategy
SpannerDialect. getLockingStrategy(Lockable lockable, LockMode lockMode)
-
Uses of Lockable in org.hibernate.dialect.lock
Methods in org.hibernate.dialect.lock that return Lockable Modifier and Type Method Description protected Lockable
AbstractSelectLockingStrategy. getLockable()
Constructors in org.hibernate.dialect.lock with parameters of type Lockable Constructor Description AbstractSelectLockingStrategy(Lockable lockable, LockMode lockMode)
OptimisticForceIncrementLockingStrategy(Lockable lockable, LockMode lockMode)
Construct locking strategy.OptimisticLockingStrategy(Lockable lockable, LockMode lockMode)
Construct locking strategy.PessimisticForceIncrementLockingStrategy(Lockable lockable, LockMode lockMode)
Construct locking strategy.PessimisticReadSelectLockingStrategy(Lockable lockable, LockMode lockMode)
Construct a locking strategy based on SQL SELECT statements.PessimisticReadUpdateLockingStrategy(Lockable lockable, LockMode lockMode)
Construct a locking strategy based on SQL UPDATE statements.PessimisticWriteSelectLockingStrategy(Lockable lockable, LockMode lockMode)
Construct a locking strategy based on SQL SELECT statements.PessimisticWriteUpdateLockingStrategy(Lockable lockable, LockMode lockMode)
Construct a locking strategy based on SQL UPDATE statements.SelectLockingStrategy(Lockable lockable, LockMode lockMode)
Construct a locking strategy based on SQL SELECT statements.UpdateLockingStrategy(Lockable lockable, LockMode lockMode)
Construct a locking strategy based on SQL UPDATE statements. -
Uses of Lockable in org.hibernate.persister.entity
Classes in org.hibernate.persister.entity that implement Lockable Modifier and Type Class Description class
AbstractEntityPersister
Basic functionality for persisting an entity via JDBC through either generated or custom SQLclass
JoinedSubclassEntityPersister
AnEntityPersister
implementing the normalizedInheritanceType.JOINED
inheritance mapping strategy for an entity and its inheritance hierarchy.class
SingleTableEntityPersister
The default implementation of theEntityPersister
interface.class
UnionSubclassEntityPersister
AnEntityPersister
implementing theInheritanceType.TABLE_PER_CLASS
mapping strategy for an entity and its inheritance hierarchy.
-