Uses of Interface
org.hibernate.cache.spi.Region
Packages that use Region
Package
Description
Internal implementations and support for second-level caching.
Defines the integration aspect of Hibernate's second-level caching, allowing
a "caching backend" to be plugged in as a cache provider.
This package provides a framework intended to reduce the work needed to implement
a caching provider.
This package defines a default set of event listeners that implement
the default behaviors of Hibernate session operations.
Defines the event types and event listener interfaces for
events produced by the stateful
Session
.The built-in implementation of the statistics collection service.
-
Uses of Region in org.hibernate.cache.internal
Methods in org.hibernate.cache.internal that return Region -
Uses of Region in org.hibernate.cache.jcache.internal
Classes in org.hibernate.cache.jcache.internal that implement Region -
Uses of Region in org.hibernate.cache.spi
Subinterfaces of Region in org.hibernate.cache.spiModifier and TypeInterfaceDescriptioninterface
SpecializedRegion
whose data is accessed directly, without the need for key/item wrapping.interface
A second-level cache region that holds cacheable domain data: the destructured state of entity instances and collections, and mappings from natural id to primary key.interface
Defines the contract for a cache region that stores query results.interface
Defines the contract for a cache region that stores timestamps.Methods in org.hibernate.cache.spi that return Region -
Uses of Region in org.hibernate.cache.spi.support
Classes in org.hibernate.cache.spi.support that implement RegionModifier and TypeClassDescriptionclass
class
class
Bridge between DirectAccessRegion and StorageAccessclass
class
Abstract implementation ofDomainDataRegion
based on implementations just needing to provide aDomainDataStorageAccess
reference for basic caching support - DomainDataStorageAccess acts as a simple wrapper around some generalized cache actions such as put or get.class
class
-
Uses of Region in org.hibernate.event.internal
Methods in org.hibernate.event.internal with parameters of type RegionModifier and TypeMethodDescriptionvoid
EmptyEventManager.completeCacheGetEvent
(HibernateMonitoringEvent cacheGetEvent, SharedSessionContractImplementor session, Region region, boolean hit) void
EmptyEventManager.completeCacheGetEvent
(HibernateMonitoringEvent cacheGetEvent, SharedSessionContractImplementor session, Region region, CollectionPersister persister, boolean hit) void
EmptyEventManager.completeCacheGetEvent
(HibernateMonitoringEvent cacheGetEvent, SharedSessionContractImplementor session, Region region, EntityPersister persister, boolean isNaturalKey, boolean hit) void
EmptyEventManager.completeCachePutEvent
(HibernateMonitoringEvent cachePutEvent, SharedSessionContractImplementor session, Region region, boolean cacheContentChanged, EventManager.CacheActionDescription description) -
Uses of Region in org.hibernate.event.spi
Methods in org.hibernate.event.spi with parameters of type RegionModifier and TypeMethodDescriptionvoid
EventManager.completeCacheGetEvent
(HibernateMonitoringEvent cacheGetEvent, SharedSessionContractImplementor session, Region region, boolean hit) void
EventManager.completeCacheGetEvent
(HibernateMonitoringEvent cacheGetEvent, SharedSessionContractImplementor session, Region region, CollectionPersister persister, boolean hit) void
EventManager.completeCacheGetEvent
(HibernateMonitoringEvent cacheGetEvent, SharedSessionContractImplementor session, Region region, EntityPersister persister, boolean isNaturalKey, boolean hit) void
EventManager.completeCachePutEvent
(HibernateMonitoringEvent cachePutEvent, SharedSessionContractImplementor session, Region region, boolean cacheContentChanged, EventManager.CacheActionDescription description) -
Uses of Region in org.hibernate.stat.internal
Constructor parameters in org.hibernate.stat.internal with type arguments of type RegionModifierConstructorDescriptionAbstractCacheableDataStatistics
(Supplier<@Nullable Region> regionSupplier)