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