com.github.houbb.config.socket.client.proxy.IConfigServerProxy Maven / Gradle / Ivy
package com.github.houbb.config.socket.client.proxy;
import com.github.houbb.config.socket.common.resp.ClientRegisterResp;
import com.github.houbb.config.socket.common.resp.ClientUnRegisterResp;
import com.github.houbb.config.socket.common.resp.QueryPublishedConfigResp;
/**
* 服务端代理接口
* @author binbin.hou
* @since 1.2.0
*/
public interface IConfigServerProxy {
/**
* 注册
* @return 结果
* @since 1.2.0
*/
ClientRegisterResp register();
/**
* 注销
* @return 结果
* @since 1.2.0
*/
ClientUnRegisterResp unRegister();
/**
* 配置查询
* @return 结果
* @since 1.2.0
*/
QueryPublishedConfigResp queryPublishedConfig();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy