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

com.ajaxjs.util.cache.CacheManager Maven / Gradle / Ivy

There is a newer version: 1.2.6
Show newest version
package com.ajaxjs.util.cache;

/**
 * 缓存管理器接口,该接口提供具体的cache实现
 * 
 */
public interface CacheManager {
	/**
	 * 根据 cache 的名称获取 cache。如果不存在,默认新建并返回
	 * 
	 * @param name Cache 的名称
	 * @return Cache
	 */
	public  Cache getCache(String name);
	
	public  Cache getCache(String name, Class clz);

	/**
	 * 销毁cache
	 */
	public void destroy();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy