I have the need for the ability to "announce" things on Zookeeper. An announcement is just an ephemeral node that is alive as long as the node is alive.
I would like for announcements to survive ZK disconnects, meddling hands deleting things and other such issues. I'm thinking that curatorFramework.create.mode(EPHEMERAL).forPath will just create one node and not watch to make sure it doesn't get removed, etc. Is that correct?
If that is correct, is there a recipe that will do what I want, or do I need to create one?
If I have to create one, is this something that you would find useful for the main library (would you accept the pull request?)
--Eric