gpt4 book ai didi

me.hao0.antares.common.zk.ZkClient.newClient()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-16 21:51:31 27 4
gpt4 key购买 nike

本文整理了Java中me.hao0.antares.common.zk.ZkClient.newClient()方法的一些代码示例,展示了ZkClient.newClient()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZkClient.newClient()方法的具体详情如下:
包路径:me.hao0.antares.common.zk.ZkClient
类名称:ZkClient
方法名:newClient

ZkClient.newClient介绍

[英]Create a client instancclientAppPathExiste
[中]创建客户端InstanceClientPathExiste

代码示例

代码示例来源:origin: ihaolin/antares

/**
 * Create a client instancclientAppPathExiste
 * @param hosts host strings: zk01:2181,zk02:2181,zk03:2181
 * @param namespace path root, such as app name
 */
public static ZkClient newClient(String hosts, String namespace){
  return newClient(hosts, namespace, DEFAULT_RETRY_STRATEGY);
}

代码示例来源:origin: ihaolin/antares

AntaresZkAgent(AbstractAntaresClient client, String zkServers, String namespace){
  this.client = client;
  this.zk = ZkClient.newClient(zkServers, namespace);
}

代码示例来源:origin: ihaolin/antares

@Autowired
public AntaresZkClient(
  @Value("${antares.zk.servers:127.0.0.1:2181}") String zkServers,
  @Value("${antares.zk.namespace:ats}") String zkNamespace){
  this.zkServers = zkServers;
  this.client = ZkClient.newClient(zkServers, zkNamespace);
}

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com