com.github.ratelimiter.configcenter.ConfigCenterClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rate-limiter Show documentation
Show all versions of rate-limiter Show documentation
rate limiter for java application with simple annotation
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);
}