I am trying to create sequence node using Apache Curator. I am not able to find any example of that?
private static void createZnodes(CuratorFramework client) throws
Exception {
client.create().creatingParentsIfNeeded().forPath("/foo/path-");
}
Any example will be greatly appreciated.. Thanks..
