Skip to content

Instantly share code, notes, and snippets.

@rightfold
Last active August 29, 2015 14:16
Show Gist options
  • Save rightfold/af47d70702c74c7a107e to your computer and use it in GitHub Desktop.
Save rightfold/af47d70702c74c7a107e to your computer and use it in GitHub Desktop.
(defn monitor [func ^Duration interval]
(->> (fn []
(Thread/sleep (.getMillis interval)
(func)))
(repeatedly)
(filter (complement nil?))
(seque 5)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment