Skip to content

Instantly share code, notes, and snippets.

@ericacm
Last active October 11, 2015 23:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericacm/3935889 to your computer and use it in GitHub Desktop.
Save ericacm/3935889 to your computer and use it in GitHub Desktop.
watchLeaderChildren
def watchLeaderChildren() {
curatorFramework.getChildren.usingWatcher(
new CuratorWatcher {
def process(event: WatchedEvent) {
val cs = clusterStatus()
// Do something with cluster status (log leadership change, etc)
// Re-set watch
curatorFramework.getChildren.usingWatcher(this).
inBackground.forPath(leaderPath)
}
}).inBackground.forPath(leaderPath)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment