Uses of Interface
org.hibernate.cache.spi.access.CachedDomainDataAccess
-
Packages that use CachedDomainDataAccess Package Description org.hibernate.cache.spi.access Defines contracts for transactional and concurrent access to cached entity and collection data.org.hibernate.cache.spi.support This package provides a framework intended to reduce the work needed to implement a caching provider.org.hibernate.engine.internal Support for many of the internal workings of Hibernate.org.hibernate.event.internal This package defines a default set of event listeners that implement the default behaviors of Hibernate session operations.org.hibernate.event.spi Defines the event types and event listener interfaces for events produced by the statefulSession
. -
-
Uses of CachedDomainDataAccess in org.hibernate.cache.spi.access
Subinterfaces of CachedDomainDataAccess in org.hibernate.cache.spi.access Modifier and Type Interface Description interface
CollectionDataAccess
Contract for managing transactional and concurrent access to cached collection data.interface
EntityDataAccess
Contract for managing transactional and concurrent access to cached entity data.interface
NaturalIdDataAccess
Contract for managing transactional and concurrent access to cached naturalId data. -
Uses of CachedDomainDataAccess in org.hibernate.cache.spi.support
-
Uses of CachedDomainDataAccess in org.hibernate.engine.internal
Methods in org.hibernate.engine.internal with parameters of type CachedDomainDataAccess Modifier and Type Method Description static Object
CacheHelper. fromSharedCache(SharedSessionContractImplementor session, Object cacheKey, CollectionPersister persister, CachedDomainDataAccess cacheAccess)
static Object
CacheHelper. fromSharedCache(SharedSessionContractImplementor session, Object cacheKey, EntityPersister persister, boolean isNaturalKey, CachedDomainDataAccess cacheAccess)
static Object
CacheHelper. fromSharedCache(SharedSessionContractImplementor session, Object cacheKey, EntityPersister persister, CachedDomainDataAccess cacheAccess)
-
Uses of CachedDomainDataAccess in org.hibernate.event.internal
Methods in org.hibernate.event.internal with parameters of type CachedDomainDataAccess Modifier and Type Method Description void
EmptyEventManager. completeCachePutEvent(HibernateMonitoringEvent cachePutEvent, SharedSessionContractImplementor session, CachedDomainDataAccess cachedDomainDataAccess, CollectionPersister persister, boolean cacheContentChanged, EventManager.CacheActionDescription description)
void
EmptyEventManager. completeCachePutEvent(HibernateMonitoringEvent cachePutEvent, SharedSessionContractImplementor session, CachedDomainDataAccess cachedDomainDataAccess, EntityPersister persister, boolean cacheContentChanged, boolean isNatualId, EventManager.CacheActionDescription description)
void
EmptyEventManager. completeCachePutEvent(HibernateMonitoringEvent cachePutEvent, SharedSessionContractImplementor session, CachedDomainDataAccess cachedDomainDataAccess, EntityPersister persister, boolean cacheContentChanged, EventManager.CacheActionDescription description)
-
Uses of CachedDomainDataAccess in org.hibernate.event.spi
Methods in org.hibernate.event.spi with parameters of type CachedDomainDataAccess Modifier and Type Method Description void
EventManager. completeCachePutEvent(HibernateMonitoringEvent cachePutEvent, SharedSessionContractImplementor session, CachedDomainDataAccess cachedDomainDataAccess, CollectionPersister persister, boolean cacheContentChanged, EventManager.CacheActionDescription description)
void
EventManager. completeCachePutEvent(HibernateMonitoringEvent cachePutEvent, SharedSessionContractImplementor session, CachedDomainDataAccess cachedDomainDataAccess, EntityPersister persister, boolean cacheContentChanged, boolean isNatualId, EventManager.CacheActionDescription description)
void
EventManager. completeCachePutEvent(HibernateMonitoringEvent cachePutEvent, SharedSessionContractImplementor session, CachedDomainDataAccess cachedDomainDataAccess, EntityPersister persister, boolean cacheContentChanged, EventManager.CacheActionDescription description)
-