cn.sylinx.hbatis.db.cache.ICacheKit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hbatis-core Show documentation
Show all versions of hbatis-core Show documentation
hbatis is a simple orm framework
package cn.sylinx.hbatis.db.cache;
public interface ICacheKit {
public static final String DEFAULT_CACHENAME = "hbatis_default_cache";
public static ICacheKit create() {
return CacheKitManager.get();
}
public boolean isInited();
public T get(String cacheKey, IDataLoader dataLoader);
}