All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.ratelimiter.configcenter.ConfigCenterClient Maven / Gradle / Ivy

The newest version!
package com.github.ratelimiter.configcenter;

/**
 * 配置中心客户端
 * Created by zhouyinyan on 17/6/25.
 */
public interface ConfigCenterClient {

    /**
     * 获取配置中心配置值
     * @param configCenterKey 配置中心key
     * @return 配置值
     */
    String getValue(String configCenterKey);

    /**
     * 配置中心配置变更后,配置动态更新
     * @param configCenterKey 配置中心key
     * @param newValue 更新值
     */
    void updateValue(String configCenterKey, String newValue);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy