This sounds pretty useful as a contrib, ff to submit a patch
http://bit.ly/bgYpW5 . Be sure to include README type details on
semantics of use (I don't see watches so this might be pretty simple).
Also see: http://bit.ly/bhcpwx a few ZK users are using this now afaict.
However last I checked docs were thin and there def. were some issues
with the semantics.
Regards,
Patrick
Aaron Crow wrote:
Dear ZooKeepers,
We recently integrated ZooKeeper into our Java project at work. This is a
very cool project... I feel like a kid with a new toy. After using the Java
API a little, I've begun to create some simple wrappers around the main
ZooKeeper object.
Specifically, I'm creating a simple Node design, that makes it simpler and
more convenient for me to do simple management of my ZooKeeper node state.
Just as a rough idea:
Node node = myZk.getNode(path);
if(node.exists()){
String data = node.getData();
Collection<Node> children = node.getChildren();
node.delete();
}
I was wondering... am I re-inventing the wheel here (did I miss any existing
API like this)? Or if not, would the community have any interest if I wanted
to add this into the main project?
Many thanks in advance for any insights or guidance...
All the best,
Aaron