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