com.spotify.helios.servicescommon.coordination.ZooKeeperClient.listRecursive()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(3.1k)|赞(0)|评价(0)|浏览(103)

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

ZooKeeperClient.listRecursive介绍

暂无

代码示例

代码示例来源:origin: spotify/helios

private static List<String> safeListRecursive(final ZooKeeperClient client, final String path)
   throws KeeperException {
  try {
   return client.listRecursive(path);
  } catch (NoNodeException e) {
   return ImmutableList.of();
  }
 }
}

代码示例来源:origin: spotify/helios

@Override
public List<String> listRecursive(String path) throws KeeperException {
 return reporter.time(tag, "listRecursive", () -> client.listRecursive(path));
}

代码示例来源:origin: spotify/helios

final List<String> nodes = newArrayList(reverse(client.listRecursive(configHostJobPath)));
nodes.add(Paths.configJobHost(jobId, host));

代码示例来源:origin: spotify/helios

final List<String> nodes = newArrayList(reverse(client.listRecursive(configHostJobPath)));
nodes.add(Paths.configJobHost(jobId, host));

代码示例来源:origin: at.molindo/helios-services

private List<String> safeListRecursive(final ZooKeeperClient client, final String path)
  throws KeeperException {
 try {
  return client.listRecursive(path);
 } catch (NoNodeException e) {
  return ImmutableList.of();
 }
}

代码示例来源:origin: at.molindo/helios-services

@Override
public List<String> listRecursive(String path) throws KeeperException {
 try {
  return client.listRecursive(path);
 } catch (KeeperException e) {
  reporter.checkException(e, tag, "listRecursive");
  throw e;
 }
}

代码示例来源:origin: at.molindo/helios-services

private List<ZooKeeperOperation> getUndeployOperations(final ZooKeeperClient client,
                           final String host, final JobId jobId,
                           final String token)
  throws HostNotFoundException, JobNotDeployedException, TokenVerificationException {
 assertHostExists(client, host);
 final Deployment deployment = getDeployment(host, jobId);
 if (deployment == null) {
  throw new JobNotDeployedException(host, jobId);
 }
 final Job job = getJob(client, jobId);
 verifyToken(token, job);
 final String configHostJobPath = Paths.configHostJob(host, jobId);
 try {
  // use listRecursive to remove both job node and its child creation node
  final List<String> nodes = newArrayList(reverse(client.listRecursive(configHostJobPath)));
  nodes.add(Paths.configJobHost(jobId, host));
  final List<Integer> staticPorts = staticPorts(job);
  for (int port : staticPorts) {
   nodes.add(Paths.configHostPort(host, port));
  }
  return ImmutableList.of(delete(nodes));
 } catch (NoNodeException e) {
  // This method is racy since it's possible someone undeployed the job after we called
  // getDeployment and checked the job exists. If we now discover the job is undeployed,
  // throw an exception and handle it the same as if we discovered this earlier.
  throw new JobNotDeployedException(host, jobId);
 } catch (KeeperException e) {
  throw new HeliosRuntimeException("calculating undeploy operations failed", e);
 }
}

代码示例来源:origin: at.molindo/helios-services

final List<String> nodes = newArrayList(reverse(client.listRecursive(configHostJobPath)));
nodes.add(Paths.configJobHost(jobId, host));

相关文章