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