We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
According to 《Alibaba Java Coding Guidelines》, the interface should not have the public modifier. e.g. com.alibaba.nacos.api.config.ConfigService.java
public interface ConfigService { public String getConfig(String dataId, String group, long timeoutMs) throws NacosException; public void addListener(String dataId, String group, Listener listener) throws NacosException; public boolean publishConfig(String dataId, String group, String content) throws NacosException; public boolean removeConfig(String dataId, String group) throws NacosException; public void removeListener(String dataId, String group, Listener listener); }
The text was updated successfully, but these errors were encountered:
I fix it in 0.4.0, thx !
Sorry, something went wrong.
Fix alibaba#38
70651a8
Merge pull request #194 from yanlinly/master
24a2ede
Fix #38 #106 #188
yanlinly
No branches or pull requests
According to 《Alibaba Java Coding Guidelines》, the interface should not have the public modifier.
e.g.
com.alibaba.nacos.api.config.ConfigService.java
The text was updated successfully, but these errors were encountered: