Package com.thenetcircle.comsumerdispatcher.distribution

Examples of com.thenetcircle.comsumerdispatcher.distribution.DistributedConfigLoader


  }
 
  public void loadConfig(String configFilePath) throws Exception {
    ConfigLoader cLoader = null;
    if (null == configFilePath) {
      cLoader = new DistributedConfigLoader(DistributionManager.getInstance().getZk());
    } else {
      cLoader = new FileConfigLoader(configFilePath);
    }
   
    setServers(cLoader.loadServers());// go first
View Full Code Here

TOP

Related Classes of com.thenetcircle.comsumerdispatcher.distribution.DistributedConfigLoader

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.