This library includes a Trapperkeeper service which provides an API for watching paths on the filesystem for changes and doing something when they change.
Add the following dependency to your project.clj file:
The service implementation in this repository is based on java.nio's
WatchService
.
The default implementation of that interface varies drastically in behavior
between certain platforms, especially Mac OSX and Linux. The Trapperkeeper
service protocol in this repository is consciously written in a
platform-agnostic way. When working on this code, it is often a good idea to
run the tests on multiple platforms as part of development - say, if you write
code on a Mac, run the tests on a Linux VM as well. This is can save you the
pain of finding out that things don't work as expected due to platform-specific
differences in the implementation of the JDK's WatchService
once your new
code gets into CI.
Bug reports and feature requests are welcome via GitHub issues.
For interactive questions feel free to post to #puppet or #puppet-dev on the Puppet Community Slack channel.
Contributions are welcome at https://github.com/puppetlabs/trapperkeeper-filesystem-watcher/pulls. Contributors should both be sure to read the contributing document and sign the contributor license agreement.
Everyone interacting with the project’s codebase, issue tracker, etc is expected to follow the code of conduct.