Uses of Class
org.apache.zookeeper.KeeperException.NoNodeException
-
Packages that use KeeperException.NoNodeException Package Description org.apache.zookeeper.server ZooKeeper server theory of operationorg.apache.zookeeper.server.persistence -
-
Uses of KeeperException.NoNodeException in org.apache.zookeeper.server
Methods in org.apache.zookeeper.server that throw KeeperException.NoNodeException Modifier and Type Method Description void
DataTree. createNode(String path, byte[] data, List<ACL> acl, long ephemeralOwner, int parentCVersion, long zxid, long time)
Add a new node to the DataTree.void
DataTree. createNode(String path, byte[] data, List<ACL> acl, long ephemeralOwner, int parentCVersion, long zxid, long time, Stat outputStat)
Add a new node to the DataTree.void
DataTree. deleteNode(String path, long zxid)
remove the path from the datatreeList<ACL>
DataTree. getACL(String path, Stat stat)
List<ACL>
ZKDatabase. getACL(String path, Stat stat)
get acl for a pathint
ZKDatabase. getAllChildrenNumber(String path)
List<String>
DataTree. getChildren(String path, Stat stat, Watcher watcher)
List<String>
ZKDatabase. getChildren(String path, Stat stat, Watcher watcher)
get children list for this pathbyte[]
DataTree. getData(String path, Stat stat, Watcher watcher)
byte[]
ZKDatabase. getData(String path, Stat stat, Watcher watcher)
get data and stat for a pathStat
DataTree. setACL(String path, List<ACL> acl, int version)
void
DataTree. setCversionPzxid(String path, int newCversion, long zxid)
This method sets the Cversion and Pzxid for the specified node to the values passed as arguments.Stat
DataTree. setData(String path, byte[] data, int version, long zxid, long time)
Stat
DataTree. statNode(String path, Watcher watcher)
Stat
ZKDatabase. statNode(String path, ServerCnxn serverCnxn)
stat the path -
Uses of KeeperException.NoNodeException in org.apache.zookeeper.server.persistence
Methods in org.apache.zookeeper.server.persistence that throw KeeperException.NoNodeException Modifier and Type Method Description void
FileTxnSnapLog. processTransaction(TxnHeader hdr, DataTree dt, Map<Long,Integer> sessions, Record txn)
process the transaction on the datatree
-