All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.engine.spi.CacheImplementor Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.engine.spi;

import java.io.Serializable;
import java.util.Map;

import org.hibernate.Cache;
import org.hibernate.HibernateException;
import org.hibernate.cache.spi.QueryCache;
import org.hibernate.cache.spi.Region;
import org.hibernate.cache.spi.RegionFactory;
import org.hibernate.cache.spi.UpdateTimestampsCache;
import org.hibernate.service.Service;

/**
 * Define internal contact of Cache API
 *
 * @author Strong Liu 
 */
public interface CacheImplementor extends Service, Cache, Serializable {

	/**
	 * Close all cache regions.
	 */
	public void close();

	/**
	 * Get query cache by region name or create a new one if none exist.
	 * 

* If the region name is null, then default query cache region will be returned. * * @param regionName Query cache region name. * @return The {@code QueryCache} associated with the region name, or default query cache if the region name is null. * @throws HibernateException {@code HibernateException} maybe thrown when the creation of new QueryCache instance. */ public QueryCache getQueryCache(String regionName) throws HibernateException; /** * Get the default {@code QueryCache}. */ public QueryCache getQueryCache(); /** * Add {@code Region} to this Cache scope. * * @param name The region name. * @param region The {@code Region} instance. */ public void addCacheRegion(String name, Region region); /** * Get {@code UpdateTimestampsCache} instance managed by the {@code SessionFactory}. */ public UpdateTimestampsCache getUpdateTimestampsCache(); /** * Clean up the default {@code QueryCache}. * * @throws HibernateException */ public void evictQueries() throws HibernateException; /** * Get second level cache region by its name. * * @param regionName The region name. * @return The second level cache region. */ public Region getSecondLevelCacheRegion(String regionName); /** * Get natural id cache region by its name. * * @param regionName The region name. * @return The natural id cache region. */ public Region getNaturalIdCacheRegion(String regionName); /** * Get all cache regions, including query cache. * * @return The map contains all cache regions with region name as the key. */ public Map getAllSecondLevelCacheRegions(); /** * * @return The {@code RegionFactory} */ public RegionFactory getRegionFactory(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy