当前位置: 首页>>代码示例>>Java>>正文


Java ConfigMgr.isInit方法代码示例

本文整理汇总了Java中com.baidu.disconf.client.config.ConfigMgr.isInit方法的典型用法代码示例。如果您正苦于以下问题:Java ConfigMgr.isInit方法的具体用法?Java ConfigMgr.isInit怎么用?Java ConfigMgr.isInit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.baidu.disconf.client.config.ConfigMgr的用法示例。


在下文中一共展示了ConfigMgr.isInit方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getFetcherMgr

import com.baidu.disconf.client.config.ConfigMgr; //导入方法依赖的package包/类
/**
 * 获取抓取器实例,记得释放资源, 它依赖Conf模块
 */
public static FetcherMgr getFetcherMgr() throws Exception {

    if (!ConfigMgr.isInit()) {
        throw new Exception("ConfigMgr should be init before FetcherFactory.getFetcherMgr");
    }

    // 获取一个默认的抓取器
    RestfulMgr restfulMgr = RestfulFactory.getRestfulMgrNomal();

    FetcherMgr fetcherMgr =
            new FetcherMgrImpl(restfulMgr, DisClientConfig.getInstance().CONF_SERVER_URL_RETRY_TIMES,
                    DisClientConfig.getInstance().confServerUrlRetrySleepSeconds,
                    DisClientConfig.getInstance().enableLocalDownloadDirInClassPath,
                    DisClientConfig.getInstance().userDefineDownloadDir,
                    DisClientSysConfig.getInstance().LOCAL_DOWNLOAD_DIR,
                    DisClientConfig.getInstance().getHostList());

    return fetcherMgr;
}
 
开发者ID:knightliao,项目名称:disconf,代码行数:23,代码来源:FetcherFactory.java

示例2: getWatchMgr

import com.baidu.disconf.client.config.ConfigMgr; //导入方法依赖的package包/类
/**
 * @throws Exception
 */
public static WatchMgr getWatchMgr(FetcherMgr fetcherMgr) throws Exception {

    if (!ConfigMgr.isInit()) {
        throw new Exception("ConfigMgr should be init before WatchFactory.getWatchMgr");
    }

    if (hosts == null || zooPrefix == null) {
        synchronized(hostsSync) {
            if (hosts == null || zooPrefix == null) {

                // 获取 Zoo Hosts
                try {

                    hosts = fetcherMgr.getValueFromServer(DisconfWebPathMgr.getZooHostsUrl(DisClientSysConfig
                                                                                               .getInstance()
                                                                                               .CONF_SERVER_ZOO_ACTION));

                    zooPrefix = fetcherMgr.getValueFromServer(DisconfWebPathMgr.getZooPrefixUrl(DisClientSysConfig
                                                                                                    .getInstance
                                                                                                         ()
                                                                                                    .CONF_SERVER_ZOO_ACTION));

                    WatchMgr watchMgr = new WatchMgrImpl();
                    watchMgr.init(hosts, zooPrefix, DisClientConfig.getInstance().DEBUG);

                    return watchMgr;

                } catch (Exception e) {

                    LOGGER.error("cannot get watch module", e);

                }
            }
        }
    }

    return null;
}
 
开发者ID:knightliao,项目名称:disconf,代码行数:42,代码来源:WatchFactory.java


注:本文中的com.baidu.disconf.client.config.ConfigMgr.isInit方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。