gpt4 book ai didi

org.apache.dubbo.remoting.zookeeper.zkclient.ZkClientWrapper类的使用及代码示例

转载 作者:知者 更新时间:2024-03-13 09:59:20 24 4
gpt4 key购买 nike

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

ZkClientWrapper介绍

[英]Zkclient wrapper class that can monitor the state of the connection automatically after the connection is out of time It is also consistent with the use of curator
[中]Zkclient包装类,可以在连接超时后自动监控连接的状态,这也与curator的使用一致

代码示例

代码示例来源:origin: apache/incubator-dubbo

public ZkclientZookeeperClient(URL url) {
  super(url);
  long timeout = url.getParameter(Constants.TIMEOUT_KEY, 30000L);
  client = new ZkClientWrapper(url.getBackupAddress(), timeout);
  client.addListener(new IZkStateListener() {
    @Override
    public void handleStateChanged(KeeperState state) throws Exception {
      ZkclientZookeeperClient.this.state = state;
      if (state == KeeperState.Disconnected) {
        stateChanged(StateListener.DISCONNECTED);
      } else if (state == KeeperState.SyncConnected) {
        stateChanged(StateListener.CONNECTED);
      }
    }
    @Override
    public void handleNewSession() throws Exception {
      stateChanged(StateListener.RECONNECTED);
    }
  });
  client.start();
}

代码示例来源:origin: apache/incubator-dubbo

@Override
public void doClose() {
  client.close();
}

代码示例来源:origin: apache/incubator-dubbo

@Override
public void createEphemeral(String path) {
  try {
    client.createEphemeral(path);
  } catch (ZkNodeExistsException e) {
    logger.error("zookeeper failed to create ephemeral node with " + path + ": ", e);
  }
}

代码示例来源:origin: apache/incubator-dubbo

@Override
public void createPersistent(String path) {
  try {
    client.createPersistent(path);
  } catch (ZkNodeExistsException e) {
    logger.error("zookeeper failed to create persistent node with " + path + ": ", e);
  }
}

代码示例来源:origin: apache/incubator-dubbo

public void addListener(IZkStateListener listener) {
  completableFuture.whenComplete((value, exception) -> {
    this.makeClientReady(value, exception);
    if (exception == null) {
      client.subscribeStateChanges(listener);
    }
  });
}

代码示例来源:origin: apache/incubator-dubbo

@Override
public boolean checkExists(String path) {
  try {
    return client.exists(path);
  } catch (Throwable t) {
    logger.error("zookeeper failed to check node existing with " + path + ": ", t);
  }
  return false;
}

代码示例来源:origin: apache/incubator-dubbo

@Override
public String doGetContent(String path) {
  try {
    return client.getData(path);
  } catch (ZkNoNodeException e) {
    logger.error("zookeeper failed to get data with " + path + ": ", e);
    return null;
  }
}

代码示例来源:origin: apache/incubator-dubbo

@Override
public void delete(String path) {
  try {
    client.delete(path);
  } catch (ZkNoNodeException e) {
    logger.error("zookeeper failed to delete node with " + path + ": ", e);
  }
}

代码示例来源:origin: apache/incubator-dubbo

@Override
public List<String> getChildren(String path) {
  try {
    return client.getChildren(path);
  } catch (ZkNoNodeException e) {
    logger.error("zookeeper failed to get children node with " + path + ": ", e);
    return null;
  }
}

代码示例来源:origin: apache/incubator-dubbo

@Override
protected void createPersistent(String path, String data) {
  try {
    client.createPersistent(path, data);
  } catch (ZkNodeExistsException e) {
    logger.error("zookeeper failed to create persistent node with " +
        path + " and " + data + " : ", e);
  }
}

代码示例来源:origin: apache/incubator-dubbo

public void addListener(IZkStateListener listener) {
  completableFuture.whenComplete((value, exception) -> {
    this.makeClientReady(value, exception);
    if (exception == null) {
      client.subscribeStateChanges(listener);
    }
  });
}

代码示例来源:origin: apache/incubator-dubbo

@Override
public boolean checkExists(String path) {
  try {
    return client.exists(path);
  } catch (Throwable t) {
    logger.error("zookeeper failed to check node existing with " + path + ": ", t);
  }
  return false;
}

代码示例来源:origin: apache/incubator-dubbo

@Override
public String doGetContent(String path) {
  try {
    return client.getData(path);
  } catch (ZkNoNodeException e) {
    logger.error("zookeeper failed to get data with " + path + ": ", e);
    return null;
  }
}

代码示例来源:origin: apache/incubator-dubbo

@Override
public void delete(String path) {
  try {
    client.delete(path);
  } catch (ZkNoNodeException e) {
    logger.error("zookeeper failed to delete node with " + path + ": ", e);
  }
}

代码示例来源:origin: apache/incubator-dubbo

@Override
public List<String> getChildren(String path) {
  try {
    return client.getChildren(path);
  } catch (ZkNoNodeException e) {
    logger.error("zookeeper failed to get children node with " + path + ": ", e);
    return null;
  }
}

代码示例来源:origin: apache/incubator-dubbo

public ZkclientZookeeperClient(URL url) {
  super(url);
  long timeout = url.getParameter(Constants.TIMEOUT_KEY, 30000L);
  client = new ZkClientWrapper(url.getBackupAddress(), timeout);
  client.addListener(new IZkStateListener() {
    @Override
    public void handleStateChanged(KeeperState state) throws Exception {
      ZkclientZookeeperClient.this.state = state;
      if (state == KeeperState.Disconnected) {
        stateChanged(StateListener.DISCONNECTED);
      } else if (state == KeeperState.SyncConnected) {
        stateChanged(StateListener.CONNECTED);
      }
    }
    @Override
    public void handleNewSession() throws Exception {
      stateChanged(StateListener.RECONNECTED);
    }
  });
  client.start();
}

代码示例来源:origin: apache/incubator-dubbo

@Override
protected void createPersistent(String path, String data) {
  try {
    client.createPersistent(path, data);
  } catch (ZkNodeExistsException e) {
    logger.error("zookeeper failed to create persistent node with " +
        path + " and " + data + " : ", e);
  }
}

代码示例来源:origin: apache/incubator-dubbo

@Override
public void createEphemeral(String path) {
  try {
    client.createEphemeral(path);
  } catch (ZkNodeExistsException e) {
    logger.error("zookeeper failed to create ephemeral node with " + path + ": ", e);
  }
}

代码示例来源:origin: org.apache.dubbo/dubbo

public void addListener(IZkStateListener listener) {
  completableFuture.whenComplete((value, exception) -> {
    this.makeClientReady(value, exception);
    if (exception == null) {
      client.subscribeStateChanges(listener);
    }
  });
}

代码示例来源:origin: org.apache.dubbo/dubbo-remoting-zookeeper

@Override
public boolean checkExists(String path) {
  try {
    return client.exists(path);
  } catch (Throwable t) {
    logger.error("zookeeper failed to check node existing with " + path + ": ", t);
  }
  return false;
}

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