[Update] HotDataCacheStore, Cleanable 更新Javadoc;

This commit is contained in:
2020-06-03 17:03:54 +08:00
parent b4e9fdab7d
commit ef70ac77cb
2 changed files with 8 additions and 1 deletions

View File

@ -1,10 +1,13 @@
package net.lamgc.cgj.bot.cache;
/**
* 可清理接口, 实现该接口代表该类有清理动作.
* 可清理接口, 实现该接口代表该类有清理动作.
*/
public interface Cleanable {
/**
* 该方法需要CacheStore完成对过期Entry的清除.
*/
void clean() throws Exception;
}