Skip to content

Instantly share code, notes, and snippets.

@comnik
Created November 30, 2017 13:00
Show Gist options
  • Save comnik/97539aaedd560de264eed98769667d13 to your computer and use it in GitHub Desktop.
Save comnik/97539aaedd560de264eed98769667d13 to your computer and use it in GitHub Desktop.
(defmacro with-timeout [seconds & body]
`(let [f# (future ~@body)]
(try
(.get f# ~seconds java.util.concurrent.TimeUnit/SECONDS)
(catch java.util.concurrent.TimeoutException e#
(do (future-cancel f#) nil)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment