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