Esempio n. 1
0
 public NodeProxy(ZooKeeperClient zkClient, string name, string path = default)
 {
     path      = path ?? "/";
     Path      = CheckPath(path);
     Name      = name;
     _zkClient = zkClient;
 }
Esempio n. 2
0
 public ValueNodeProxy(ZooKeeperClient zkClient, string name, string path) : base(zkClient, name, path)
 {
 }
Esempio n. 3
0
 protected DataNodeProxy(ZooKeeperClient zkClient, string name, string path) : base(zkClient, name, path)
 {
 }
Esempio n. 4
0
 public DefaultWatcher(ZooKeeperClient client, TaskCompletionSource <Void> tcs)
 {
     _tcs    = tcs;
     _client = client;
 }