Imitating the zookeeper client written by Zookeepermain

Source: Internet
Author: User
Tags zookeeper zookeeper client

public class App {
private static final int session_time = 2000;
protected ZooKeeper ZK;
Protected String host = "";

protected void Connecttozk (String newhost) throws Interruptedexception, IOException {
if (ZK! = null && zk.getstate (). IsAlive ()) {
Zk.close ();
}
host = Newhost;
ZK = new ZooKeeper (host, Session_time, New Mywatcher ());
}

public static void Printmessage (String msg) {
SYSTEM.OUT.PRINTLN (msg);
}

Private class Mywatcher implements watcher {
public void process (Watchedevent event) {
App.printmessage (Event.tostring ());
}
}
}

public class Apptest {
public static void Main (string[] args) throws Exception {
App app = new app ();
APP.CONNECTTOZK ("192.168.1.92:2181");
Add a scheme for IP rights control
arraylist<acl> ACL = new arraylist<acl> (collections.singletonlist (new ACL (Perms.all, New Id ("IP", " 192.168.1.92 ")));
App.zk.create ("/test", "Test". GetBytes (), ACL, createmode.persistent);
}
}

Imitating the zookeeper client written by Zookeepermain

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.