mirror of
https://github.com/LamGC/ContentGrabbingJi.git
synced 2025-07-02 05:17:26 +00:00
[Update] HotDataCacheStore 增加对自动清理的支持; [Change] RedisPoolCacheStore 将Redis缓存库抽象类设为default(原public); [Change] MiraiMessageSender, BotCommandProcess 适配HotDataCacheStore的修改; [Change] BotCommandProcess 调整ranking命令的输出格式;
11 lines
177 B
Java
11 lines
177 B
Java
package net.lamgc.cgj.bot.cache;
|
|
|
|
/**
|
|
* 可清理接口, 实现该接口代表该类拥有清理动作.
|
|
*/
|
|
public interface Cleanable {
|
|
|
|
void clean() throws Exception;
|
|
|
|
}
|