Uses of Class
org.apache.zookeeper.data.Stat
-
Packages that use Stat Package Description org.apache.zookeeper org.apache.zookeeper.client org.apache.zookeeper.proto org.apache.zookeeper.server ZooKeeper server theory of operationorg.apache.zookeeper.server.upgrade -
-
Uses of Stat in org.apache.zookeeper
Methods in org.apache.zookeeper that return Stat Modifier and Type Method Description StatZooKeeper. exists(java.lang.String path, boolean watch)Return the stat of the node of the given path.StatZooKeeper. exists(java.lang.String path, Watcher watcher)Return the stat of the node of the given path.StatOpResult.SetDataResult. getStat()StatZooKeeper. setACL(java.lang.String path, java.util.List<ACL> acl, int aclVersion)Set the ACL for the node of the given path if such a node exists and the given aclVersion matches the acl version of the node.StatZooKeeper. setData(java.lang.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).Methods in org.apache.zookeeper with parameters of type Stat Modifier and Type Method Description java.util.List<ACL>ZooKeeper. getACL(java.lang.String path, Stat stat)Return the ACL and stat of the node of the given path.voidZooKeeper. 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.voidAsyncCallback.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.voidAsyncCallback.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.voidAsyncCallback.DataCallback. processResult(int rc, java.lang.String path, java.lang.Object ctx, byte[] data, Stat stat)Process the result of the asynchronous call.voidAsyncCallback.StatCallback. processResult(int rc, java.lang.String path, java.lang.Object ctx, Stat stat)Process the result of the asynchronous call.Constructors in org.apache.zookeeper with parameters of type Stat Constructor Description SetDataResult(Stat stat) -
Uses of Stat in org.apache.zookeeper.client
Methods in org.apache.zookeeper.client with parameters of type Stat Modifier and Type Method Description voidZooKeeperSaslClient.ServerSaslResponseCallback. processResult(int rc, java.lang.String path, java.lang.Object ctx, byte[] data, Stat stat) -
Uses of Stat in org.apache.zookeeper.proto
Methods in org.apache.zookeeper.proto that return Stat Modifier and Type Method Description StatExistsResponse. getStat()StatGetACLResponse. getStat()StatGetChildren2Response. getStat()StatGetDataResponse. getStat()StatSetACLResponse. getStat()StatSetDataResponse. getStat()Methods in org.apache.zookeeper.proto with parameters of type Stat Modifier and Type Method Description voidExistsResponse. setStat(Stat m_)voidGetACLResponse. setStat(Stat m_)voidGetChildren2Response. setStat(Stat m_)voidGetDataResponse. setStat(Stat m_)voidSetACLResponse. setStat(Stat m_)voidSetDataResponse. setStat(Stat m_)Constructors in org.apache.zookeeper.proto with parameters of type Stat Constructor Description ExistsResponse(Stat stat)GetACLResponse(java.util.List<ACL> acl, Stat stat)GetChildren2Response(java.util.List<java.lang.String> children, Stat stat)GetDataResponse(byte[] data, Stat stat)SetACLResponse(Stat stat)SetDataResponse(Stat stat) -
Uses of Stat in org.apache.zookeeper.server
Fields in org.apache.zookeeper.server declared as Stat Modifier and Type Field Description StatDataTree.ProcessTxnResult. statMethods in org.apache.zookeeper.server that return Stat Modifier and Type Method Description StatDataTree. setACL(java.lang.String path, java.util.List<ACL> acl, int version)StatDataTree. setData(java.lang.String path, byte[] data, int version, long zxid, long time)StatDataTree. statNode(java.lang.String path, Watcher watcher)StatZKDatabase. statNode(java.lang.String path, ServerCnxn serverCnxn)stat the pathMethods in org.apache.zookeeper.server with parameters of type Stat Modifier and Type Method Description voidDataNode. copyStat(Stat to)static voidDataTree. copyStat(Stat from, Stat to)java.util.List<ACL>DataTree. getACL(java.lang.String path, Stat stat)java.util.List<ACL>ZKDatabase. getACL(java.lang.String path, Stat stat)get acl for a pathjava.util.List<java.lang.String>DataTree. getChildren(java.lang.String path, Stat stat, Watcher watcher)java.util.List<java.lang.String>ZKDatabase. getChildren(java.lang.String path, Stat stat, Watcher watcher)get children list for this pathbyte[]DataTree. getData(java.lang.String path, Stat stat, Watcher watcher)byte[]ZKDatabase. getData(java.lang.String path, Stat stat, Watcher watcher)get data and stat for a path -
Uses of Stat in org.apache.zookeeper.server.upgrade
Methods in org.apache.zookeeper.server.upgrade that return Stat Modifier and Type Method Description StatDataTreeV1. setACL(java.lang.String path, java.util.List<ACL> acl, int version)StatDataTreeV1. setData(java.lang.String path, byte[] data, int version, long zxid, long time)StatDataTreeV1. statNode(java.lang.String path, Watcher watcher)Methods in org.apache.zookeeper.server.upgrade with parameters of type Stat Modifier and Type Method Description voidDataNodeV1. copyStat(Stat to)static voidDataTreeV1. copyStat(Stat from, Stat to)java.util.List<ACL>DataTreeV1. getACL(java.lang.String path, Stat stat)java.util.ArrayList<java.lang.String>DataTreeV1. getChildren(java.lang.String path, Stat stat, Watcher watcher)byte[]DataTreeV1. getData(java.lang.String path, Stat stat, Watcher watcher)
-