Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2706,7 +2706,7 @@ public void setACL(final String path, List<ACL> acl, int version, StatCallback c
* A KeeperException with error code KeeperException.NoNode will be thrown
* if no node with the given path exists.
*
* @param path
* @param path the given path for the node
* @param watcher explicit watcher
* @return an unordered array of children of the node with the given path
* @throws InterruptedException If the server transaction is interrupted.
Expand Down Expand Up @@ -2752,8 +2752,8 @@ public List<String> getChildren(final String path, Watcher watcher) throws Keepe
* A KeeperException with error code KeeperException.NoNode will be thrown
* if no node with the given path exists.
*
* @param path
* @param watch
* @param path the given path for the node
* @param watch whether need to watch this node
* @return an unordered array of children of the node with the given path
* @throws InterruptedException If the server transaction is interrupted.
* @throws KeeperException If the server signals an error with a non-zero error code.
Expand Down Expand Up @@ -2813,7 +2813,7 @@ public void getChildren(String path, boolean watch, ChildrenCallback cb, Object
*
* @since 3.3.0
*
* @param path
* @param path the given path for the node
* @param watcher explicit watcher
* @param stat stat of the znode designated by path
* @return an unordered array of children of the node with the given path
Expand Down Expand Up @@ -2868,8 +2868,8 @@ public List<String> getChildren(
*
* @since 3.3.0
*
* @param path
* @param watch
* @param path the given path for the node
* @param watch whether need to watch this node
* @param stat stat of the znode designated by path
* @return an unordered array of children of the node with the given path
* @throws InterruptedException If the server transaction is interrupted.
Expand Down Expand Up @@ -2926,7 +2926,7 @@ public void getChildren(String path, boolean watch, Children2Callback cb, Object
* Synchronously gets all numbers of children nodes under a specific path
*
* @since 3.6.0
* @param path
* @param path the given path for the node
* @return Children nodes count under path
* @throws KeeperException
* @throws InterruptedException
Expand Down Expand Up @@ -2954,7 +2954,7 @@ public int getAllChildrenNumber(final String path) throws KeeperException, Inter
* Asynchronously gets all numbers of children nodes under a specific path
*
* @since 3.6.0
* @param path
* @param path the given path for the node
*/
public void getAllChildrenNumber(final String path, AsyncCallback.AllChildrenNumberCallback cb, Object ctx) {

Expand Down Expand Up @@ -3032,7 +3032,7 @@ public void getEphemerals(AsyncCallback.EphemeralsCallback cb, Object ctx) {

/**
* Asynchronous sync. Flushes channel between process and leader.
* @param path
* @param path the given path for the node
* @param cb a handler for the callback
* @param ctx context to be provided to the callback
* @throws IllegalArgumentException if an invalid path is specified
Expand Down