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

dream.first.core.cache.CacheManagerable Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package dream.first.core.cache;

import org.yelong.core.cache.CacheManager;

/**
 * 缓存管理器支持
 * 
 * @since 2.0
 */
public interface CacheManagerable {

	/**
	 * @return 缓存管理器
	 */
	CacheManager getCacheManager();

	/**
	 * 清空缓存管理器中的所有缓存对象
	 */
	default void clearCache() {
		getCacheManager().clear();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy