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(); }