Given a full path, return the node name. i.e. "/one/two/three" will return "three"
the path
the node
Check if this state indicates that Curator has a connection to ZooKeeper
True if connected, false otherwise
Given a parent path and a child node, create a combined full path
the parent
the child
full path
Make sure all the nodes in the path are created. NOTE: Unlike File.mkdirs(), Zookeeper doesn't distinguish between directories and files. So, every node in the path is created. The data for each node is an empty blob
the client
path to ensure
if true, all nodes are created. If false, only the parent nodes are created
if not null, the ACL provider to use when creating parent nodes
if true, nodes are created as {@link CreateMode#CONTAINER} (need ZK > 3.5)
the callback to call after having created the path
the path to split
Validate the provided znode path string
znode path string
The given path if it was valid, for fluent chaining
Generated using TypeDoc
TODO Desc module (in ConnectionState)