io.fabric8.api.ZooKeeperClusterService.getEnsembleContainers()方法的使用及代码示例

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

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

ZooKeeperClusterService.getEnsembleContainers介绍

[英]Returns the of containers that participate in the ensemble.
[中]返回参与集合的容器的名称。

代码示例

代码示例来源:origin: jboss-fuse/fabric8

@Override
public List<String> getEnsembleContainers() {
  assertValid();
  return clusterService.get().getEnsembleContainers();
}

代码示例来源:origin: io.fabric8/fabric-commands

@Override
protected Object doExecute() throws Exception {
  TablePrinter printer = new TablePrinter();
  printer.column("id");
  List<String> containers = clusterService.getEnsembleContainers();
  if (containers != null) {
    for (String container : containers) {
      printer.row(container);
    }
  }
  printer.print();
  return null;
}

代码示例来源:origin: io.fabric8/fabric-boot-commands

FabricValidations.validateContainerName(name);
if (!isEnsembleServer) {
  if (clusterService.getEnsembleContainers().isEmpty()) {
    if (!isEnsembleServer) {
      throw new IllegalStateException("The use of the --ensemble-server option is mandatory when creating an initial container");

代码示例来源:origin: jboss-fuse/fabric8

FabricValidations.validateContainerName(name);
if (!isEnsembleServer) {
  if (clusterService.getEnsembleContainers().isEmpty()) {
    if (!isEnsembleServer) {
      throw new IllegalStateException("The use of the --ensemble-server option is mandatory when creating an initial container");

相关文章