Added: zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/data/class-use/Stat.html URL: http://svn.apache.org/viewvc/zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/data/class-use/Stat.html?rev=1577246&view=auto ============================================================================== --- zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/data/class-use/Stat.html (added) +++ zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/data/class-use/Stat.html Thu Mar 13 16:57:14 2014 @@ -0,0 +1,273 @@ + + + +
+ +Package | +Description | +
---|---|
org.apache.zookeeper | ++ |
Modifier and Type | +Method and Description | +
---|---|
Stat |
+ZooKeeper.exists(String path,
+ boolean watch)
+Return the stat of the node of the given path.
+ |
+
Stat |
+ZooKeeper.exists(String path,
+ Watcher watcher)
+Return the stat of the node of the given path.
+ |
+
Stat |
+ZooKeeper.setACL(String path,
+ List<ACL> acl,
+ int version)
+Set the ACL for the node of the given path if such a node exists and the
+ given version matches the version of the node.
+ |
+
Stat |
+ZooKeeper.setData(String path,
+ byte[] data,
+ int version)
+Set the data for the node of the given path if such a node exists and the
+ given version matches the version of the node (if the given version is
+ -1, it matches any node's versions).
+ |
+
Modifier and Type | +Method and Description | +
---|---|
List<ACL> |
+ZooKeeper.getACL(String path,
+ Stat stat)
+Return the ACL and stat of the node of the given path.
+ |
+
void |
+ZooKeeper.getACL(String path,
+ Stat stat,
+ AsyncCallback.ACLCallback cb,
+ Object ctx)
+The asynchronous version of getACL.
+ |
+
List<String> |
+ZooKeeper.getChildren(String path,
+ boolean watch,
+ Stat stat)
+For the given znode path return the stat and children list.
+ |
+
List<String> |
+ZooKeeper.getChildren(String path,
+ Watcher watcher,
+ Stat stat)
+For the given znode path return the stat and children list.
+ |
+
byte[] |
+ZooKeeper.getData(String path,
+ boolean watch,
+ Stat stat)
+Return the data and the stat of the node of the given path.
+ |
+
byte[] |
+ZooKeeper.getData(String path,
+ Watcher watcher,
+ Stat stat)
+Return the data and the stat of the node of the given path.
+ |
+
void |
+AsyncCallback.DataCallback.processResult(int rc,
+ String path,
+ Object ctx,
+ byte[] data,
+ Stat stat) |
+
void |
+AsyncCallback.ACLCallback.processResult(int rc,
+ String path,
+ Object ctx,
+ List<ACL> acl,
+ Stat stat) |
+
void |
+AsyncCallback.Children2Callback.processResult(int rc,
+ String path,
+ Object ctx,
+ List<String> children,
+ Stat stat) |
+
void |
+AsyncCallback.StatCallback.processResult(int rc,
+ String path,
+ Object ctx,
+ Stat stat) |
+
Copyright © 2014 The Apache Software Foundation
+ + Added: zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/data/class-use/StatPersisted.html URL: http://svn.apache.org/viewvc/zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/data/class-use/StatPersisted.html?rev=1577246&view=auto ============================================================================== --- zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/data/class-use/StatPersisted.html (added) +++ zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/data/class-use/StatPersisted.html Thu Mar 13 16:57:14 2014 @@ -0,0 +1,116 @@ + + + + + +Copyright © 2014 The Apache Software Foundation
+ + Added: zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/data/class-use/StatPersistedV1.html URL: http://svn.apache.org/viewvc/zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/data/class-use/StatPersistedV1.html?rev=1577246&view=auto ============================================================================== --- zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/data/class-use/StatPersistedV1.html (added) +++ zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/data/class-use/StatPersistedV1.html Thu Mar 13 16:57:14 2014 @@ -0,0 +1,116 @@ + + + + + +Copyright © 2014 The Apache Software Foundation
+ + Added: zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/data/package-frame.html URL: http://svn.apache.org/viewvc/zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/data/package-frame.html?rev=1577246&view=auto ============================================================================== --- zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/data/package-frame.html (added) +++ zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/data/package-frame.html Thu Mar 13 16:57:14 2014 @@ -0,0 +1,23 @@ + + + + + +Class | +Description | +
---|---|
ACL | ++ |
Id | ++ |
Stat | ++ |
StatPersisted | ++ |
StatPersistedV1 | ++ |
Copyright © 2014 The Apache Software Foundation
+ + Added: zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/data/package-tree.html URL: http://svn.apache.org/viewvc/zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/data/package-tree.html?rev=1577246&view=auto ============================================================================== --- zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/data/package-tree.html (added) +++ zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/data/package-tree.html Thu Mar 13 16:57:14 2014 @@ -0,0 +1,133 @@ + + + + + +Copyright © 2014 The Apache Software Foundation
+ + Added: zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/data/package-use.html URL: http://svn.apache.org/viewvc/zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/data/package-use.html?rev=1577246&view=auto ============================================================================== --- zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/data/package-use.html (added) +++ zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/data/package-use.html Thu Mar 13 16:57:14 2014 @@ -0,0 +1,174 @@ + + + + + +Package | +Description | +
---|---|
org.apache.zookeeper | ++ |
org.apache.zookeeper.data | ++ |
Class and Description | +
---|
ACL | +
Id | +
Stat | +
Class and Description | +
---|
Id | +
Copyright © 2014 The Apache Software Foundation
+ + Added: zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/package-frame.html URL: http://svn.apache.org/viewvc/zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/package-frame.html?rev=1577246&view=auto ============================================================================== --- zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/package-frame.html (added) +++ zookeeper/site/trunk/content/doc/r3.4.6/api/org/apache/zookeeper/package-frame.html Thu Mar 13 16:57:14 2014 @@ -0,0 +1,73 @@ + + + + + +Interface | +Description | +
---|---|
AsyncCallback | ++ |
AsyncCallback.ACLCallback | ++ |
AsyncCallback.Children2Callback | ++ |
AsyncCallback.ChildrenCallback | ++ |
AsyncCallback.DataCallback | ++ |
AsyncCallback.StatCallback | ++ |
AsyncCallback.StringCallback | ++ |
AsyncCallback.VoidCallback | ++ |
KeeperException.CodeDeprecated | +Deprecated | +
Watcher | +
+ This interface specifies the public interface an event handler class must
+ implement.
+ |
+
Watcher.Event | +
+ This interface defines the possible states an Event may represent
+ |
+
ZooDefs.Ids | ++ |
ZooDefs.OpCode | ++ |
ZooDefs.Perms | ++ |
Class | +Description | +
---|---|
ServerAdminClient | ++ |
WatchedEvent | +
+ A WatchedEvent represents a change on the ZooKeeper that a Watcher
+ is able to respond to.
+ |
+
ZooDefs | ++ |
ZooKeeper | +
+ This is the main class of ZooKeeper client library.
+ |
+
ZooKeeperMain | +
+ The command line client to ZooKeeper.
+ |
+
Enum | +Description | +
---|---|
CreateMode | +
+ CreateMode value determines how the znode is created on ZooKeeper.
+ |
+
KeeperException.Code | +
+ Codes which represent the various KeeperException
+ types.
+ |
+
Watcher.Event.EventType | +
+ Enumeration of types of events that may occur on the ZooKeeper
+ |
+
Watcher.Event.KeeperState | +
+ Enumeration of states the ZooKeeper may be at the event
+ |
+
ZooKeeper.States | ++ |
Copyright © 2014 The Apache Software Foundation
+ +