Skip to content

Instantly share code, notes, and snippets.

@ldclakmal
Last active January 12, 2017 19:12
Show Gist options
  • Save ldclakmal/03b63f0a1da872262a77f0ee136f4d73 to your computer and use it in GitHub Desktop.
Save ldclakmal/03b63f0a1da872262a77f0ee136f4d73 to your computer and use it in GitHub Desktop.
Create a watch key and poll the events
WatchKey key = watcher.take();
for (WatchEvent<?> event: key.pollEvents()) {
WatchEvent.Kind<?> kind = event.kind();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment