com.centit.support.common.ICachedObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of centit-utils Show documentation
Show all versions of centit-utils Show documentation
java 常用工具类,作为 apache-commons的补充
package com.centit.support.common;
public interface ICachedObject {
//单位秒,表示一个月
long NOT_REFRESH_PERIOD = 2592000L;
//单位秒, 表示需要快速刷新
long KEEP_FRESH_PERIOD = 60L;
void evictCahce();
//获取原始缓存数据
T getRawTarget();
}