mirror of
https://github.com/LamGC/ContentGrabbingJi.git
synced 2025-07-02 05:17:26 +00:00
14 lines
256 B
Java
14 lines
256 B
Java
package net.lamgc.cgj.bot.cache;
|
|
|
|
/**
|
|
* 可清理接口, 实现该接口代表该类具有清理动作.
|
|
*/
|
|
public interface Cleanable {
|
|
|
|
/**
|
|
* 该方法需要CacheStore完成对过期Entry的清除.
|
|
*/
|
|
void clean() throws Exception;
|
|
|
|
}
|