Uses of Interface
org.hibernate.cache.spi.Region
-
Packages that use Region Package Description org.hibernate.cache.internal Internal implementations and support for second-level caching.org.hibernate.cache.jcache.internal org.hibernate.cache.spi Defines the integration aspect of Hibernate's second-level caching, allowing a "caching backend" to be plugged in as a cache provider.org.hibernate.cache.spi.support This package provides a framework intended to reduce the work needed to implement a caching provider.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.org.hibernate.stat.internal 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 Modifier and Type Method Description RegionDisabledCaching. getRegion(String fullRegionName)RegionEnabledCaching. getRegion(String regionName) -
Uses of Region in org.hibernate.cache.jcache.internal
Classes in org.hibernate.cache.jcache.internal that implement Region Modifier and Type Class Description classJCacheDomainDataRegionImpl -
Uses of Region in org.hibernate.cache.spi
Subinterfaces of Region in org.hibernate.cache.spi Modifier and Type Interface Description interfaceDirectAccessRegionSpecializedRegionwhose data is accessed directly, without the need for key/item wrapping.interfaceDomainDataRegionA 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.interfaceQueryResultsRegionDefines the contract for a cache region that stores query results.interfaceTimestampsRegionDefines the contract for a cache region that stores timestamps.Methods in org.hibernate.cache.spi that return Region Modifier and Type Method Description RegionCacheImplementor. getRegion(String regionName)Get a cache Region by name. -
Uses of Region in org.hibernate.cache.spi.support
Classes in org.hibernate.cache.spi.support that implement Region Modifier and Type Class Description classAbstractDomainDataRegionclassAbstractRegionclassDirectAccessRegionTemplateBridge between DirectAccessRegion and StorageAccessclassDomainDataRegionImplclassDomainDataRegionTemplateAbstract implementation ofDomainDataRegionbased on implementations just needing to provide aDomainDataStorageAccessreference for basic caching support - DomainDataStorageAccess acts as a simple wrapper around some generalized cache actions such as put or get.classQueryResultsRegionTemplateclassTimestampsRegionTemplate -
Uses of Region in org.hibernate.event.internal
Methods in org.hibernate.event.internal with parameters of type Region Modifier and Type Method Description voidEmptyEventManager. completeCacheGetEvent(HibernateMonitoringEvent cacheGetEvent, SharedSessionContractImplementor session, Region region, boolean hit)voidEmptyEventManager. completeCacheGetEvent(HibernateMonitoringEvent cacheGetEvent, SharedSessionContractImplementor session, Region region, CollectionPersister persister, boolean hit)voidEmptyEventManager. completeCacheGetEvent(HibernateMonitoringEvent cacheGetEvent, SharedSessionContractImplementor session, Region region, EntityPersister persister, boolean isNaturalKey, boolean hit)voidEmptyEventManager. 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 Region Modifier and Type Method Description voidEventManager. completeCacheGetEvent(HibernateMonitoringEvent cacheGetEvent, SharedSessionContractImplementor session, Region region, boolean hit)voidEventManager. completeCacheGetEvent(HibernateMonitoringEvent cacheGetEvent, SharedSessionContractImplementor session, Region region, CollectionPersister persister, boolean hit)voidEventManager. completeCacheGetEvent(HibernateMonitoringEvent cacheGetEvent, SharedSessionContractImplementor session, Region region, EntityPersister persister, boolean isNaturalKey, boolean hit)voidEventManager. 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 Region Constructor Description AbstractCacheableDataStatistics(Supplier<@Nullable Region> regionSupplier)
-