java.util.List<ACL> |
ZooKeeper.getACL(java.lang.String path,
Stat stat) |
Return the ACL and stat of the node of the given path.
|
void |
ZooKeeper.getACL(java.lang.String path,
Stat stat,
AsyncCallback.ACLCallback cb,
java.lang.Object ctx) |
The asynchronous version of getACL.
|
java.util.List<java.lang.String> |
ZooKeeper.getChildren(java.lang.String path,
boolean watch,
Stat stat) |
For the given znode path return the stat and children list.
|
java.util.List<java.lang.String> |
ZooKeeper.getChildren(java.lang.String path,
Watcher watcher,
Stat stat) |
For the given znode path return the stat and children list.
|
byte[] |
ZooKeeper.getData(java.lang.String path,
boolean watch,
Stat stat) |
Return the data and the stat of the node of the given path.
|
byte[] |
ZooKeeper.getData(java.lang.String path,
Watcher watcher,
Stat stat) |
Return the data and the stat of the node of the given path.
|
void |
AsyncCallback.ACLCallback.processResult(int rc,
java.lang.String path,
java.lang.Object ctx,
java.util.List<ACL> acl,
Stat stat) |
Process the result of the asynchronous call.
|
void |
AsyncCallback.Children2Callback.processResult(int rc,
java.lang.String path,
java.lang.Object ctx,
java.util.List<java.lang.String> children,
Stat stat) |
Process the result of the asynchronous call.
|
void |
AsyncCallback.DataCallback.processResult(int rc,
java.lang.String path,
java.lang.Object ctx,
byte[] data,
Stat stat) |
Process the result of the asynchronous call.
|
void |
AsyncCallback.StatCallback.processResult(int rc,
java.lang.String path,
java.lang.Object ctx,
Stat stat) |
Process the result of the asynchronous call.
|