forked from fanruan/finekit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
559 B
21 lines
559 B
5 years ago
|
package com.fanruan.api.cluster.state;
|
||
|
|
||
|
import com.fr.collections.config.CollectionsConfig;
|
||
|
import com.fr.store.impl.accessor.api.AbstractFineStoreGenericPool;
|
||
|
|
||
|
/**
|
||
|
* @author Dylan.Liu
|
||
|
* @version 10.0
|
||
|
* Created by Dylan.Liu on 2020/4/26
|
||
|
* 供插件使用
|
||
|
* 设置资源连接池, 注册实际资源
|
||
|
*/
|
||
|
public abstract class BaseFineStoreGenericPool<T> extends AbstractFineStoreGenericPool<T> {
|
||
|
|
||
|
@Override
|
||
|
public abstract boolean accept(CollectionsConfig config);
|
||
|
|
||
|
@Override
|
||
|
public abstract BaseFineStoreWrapper refresh(T redisConfig);
|
||
|
}
|