⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cacheinstancemanager.java

📁 hibernate-distribution-3.3.1.GA-dist.zip源码
💻 JAVA
字号:
/* * Hibernate, Relational Persistence for Idiomatic Java * * Copyright (c) 2007, Red Hat Middleware LLC or third-party contributors as * indicated by the @author tags or express copyright attribution * statements applied by the authors.  All third-party contributions are * distributed under license by Red Hat Middleware LLC. * * This copyrighted material is made available to anyone wishing to use, modify, * copy, or redistribute it subject to the terms and conditions of the GNU * Lesser General Public License, as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License * for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this distribution; if not, write to: * Free Software Foundation, Inc. * 51 Franklin Street, Fifth Floor * Boston, MA  02110-1301  USA */package org.hibernate.cache.jbc2;import java.util.Properties;import org.hibernate.cache.CacheException;import org.hibernate.cfg.Settings;import org.jboss.cache.Cache;/** * Acts as a buffer from how instances of {@link Cache} are built/obtained. *  * @author Steve Ebersole */public interface CacheInstanceManager {    /**     * Retrieve a handle to the {@link Cache} instance to be used for storing     * entity data.     *      * @return The entity data cache instance.     */    public Cache getEntityCacheInstance();    /**     * Retrieve a handle to the {@link Cache} instance to be used for storing     * collection data.     *      * @return The collection data cache instance.     */    public Cache getCollectionCacheInstance();    /**     * Retrieve a handle to the {@link Cache} instance to be used for storing     * query results.     *      * @return The query result cache instance.     */    public Cache getQueryCacheInstance();    /**     * Retrieve a handle to the {@link Cache} instance to be used for storing     * timestamps.     *      * @return The timestamps cache instance.     */    public Cache getTimestampsCacheInstance();    /**     * Lifecycle callback to perform any necessary initialization of the     * CacheInstanceManager. Called exactly once during the construction of a     * {@link org.hibernate.impl.SessionFactoryImpl}.     *      * @param settings     *            The settings in effect.     * @param properties     *            The defined cfg properties     * @throws CacheException     *             Indicates problems starting the L2 cache impl; considered as     *             a sign to stop {@link org.hibernate.SessionFactory} building.     */    public void start(Settings settings, Properties properties) throws CacheException;    /**     * Lifecycle callback to perform any necessary cleanup of the underlying     * CacheInstanceManager. Called exactly once during     * {@link org.hibernate.SessionFactory#close}.     */    public void stop();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -