Beispiel #1
0
 public void connect(String host, ZooWatcher watcher)         // ZooKeeper
 {
     zk = new ZooKeeper(host, System.TimeSpan.FromSeconds(3000), watcher);
 }
Beispiel #2
0
 public Zoo(String conn, ZooWatcher watcher)
 {
     this.zk_hosts = conn;
     this.doWatch  = true;
     this.connect(this.zk_hosts, watcher);
 }