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.
19 lines
471 B
19 lines
471 B
package com.fanruan.api.cluster.state; |
|
|
|
|
|
import com.fr.store.impl.accessor.api.FineStoreWrapper; |
|
import com.fr.store.impl.accessor.api.impl.FineStoreAdapter; |
|
|
|
/** |
|
* @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(); |
|
}
|
|
|