Uses of Interface
org.hibernate.cache.spi.Region
-
Packages that use Region Package Description org.hibernate.cache.spi Defines the integration aspect of Hibernate's second-level caching allowing "caching back ends" to be plugged in as a caching provider.org.hibernate.cache.spi.support Package intended for simplifying the worked needed to implement a caching provider.org.hibernate.engine.spi -
-
Uses of Region in org.hibernate.cache.spi
Subinterfaces of Region in org.hibernate.cache.spi Modifier and Type Interface Description interfaceDirectAccessRegionSpecialized Region whose data is accessed directly (not requiring key/item wrapping, e.g.interfaceDomainDataRegionA Region for cacheable domain data - entity, collection, natural-id.interfaceQueryResultsRegionDefines the contract for a cache region which will specifically be used to store query results.interfaceTimestampsRegionMethods in org.hibernate.cache.spi that return Region Modifier and Type Method Description RegionCacheImplementor. getRegion(java.lang.String regionName)Get a cache Region by name.default RegionCacheImplementor. getRegionByLegacyName(java.lang.String legacyName)Deprecated.No replacement - added just for support of the newly deprecated methods expecting a qualified region 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.engine.spi
Methods in org.hibernate.engine.spi that return Region Modifier and Type Method Description RegionCacheImplementor. getRegion(java.lang.String regionName)Deprecated.Get a cache Region by namedefault RegionCacheImplementor. getRegionByLegacyName(java.lang.String legacyName)Deprecated.No replacement - added just for support of the newly deprecated methods expecting a qualified region name
-