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.
20 lines
466 B
20 lines
466 B
5 years ago
|
package com.fanruan.api.cluster.state;
|
||
|
|
||
|
|
||
|
import com.fr.store.impl.accessor.api.FineStoreAdapter;
|
||
|
import com.fr.store.impl.accessor.api.FineStoreWrapper;
|
||
|
|
||
|
/**
|
||
|
* @author Dylan.Liu
|
||
|
* @version 10.0
|
||
|
* Created by Dylan.Liu on 2020/4/26
|
||
|
* 供插件使用的资源包装器
|
||
|
*/
|
||
|
public abstract class BaseFineStoreWrapper implements FineStoreWrapper {
|
||
|
@Override
|
||
|
public abstract FineStoreAdapter getResource();
|
||
|
|
||
|
@Override
|
||
|
public abstract void destroy();
|
||
|
}
|