com.clickntap.tool.cache.CacheManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of click_framework Show documentation
Show all versions of click_framework Show documentation
Java Framework based on Spring Framework, Freemarker and Simplicity
The newest version!
package com.clickntap.tool.cache;
import java.util.List;
public interface CacheManager {
public List getCacheNames() throws Exception;
public Cache getCache(String cacheName, int maxSize) throws Exception;
public boolean containsCache(String cacheName);
public void reset();
}