I wrote a basic quartz adapter for calling clojure functions by
submitting a job to call a clojure function by namespace/name or
submitting a closure. My write-up is here:
http://asymmetrical-view.com/2009/05/19/quartz-and-clojure.html
The example quartz code is in my github sandbox:
http://
What do you need that a cron job wouldn't provide?
On Jun 26, 8:43 am, Stuart Halloway wrote:
> I am working on a Clojure project that is becoming more and more
> schedule-oriented. So far I have been using Clojure's native
> concurrency constructs, but I am becoming tempted to use Java's
On Jun 26, 11:43 am, Stuart Halloway
wrote:
> I am working on a Clojure project that is becoming more and more
> schedule-oriented. So far I have been using Clojure's native
> concurrency constructs, but I am becoming tempted to use Java's
> concurrency primitives to get interruptability, etc.
I am working on a Clojure project that is becoming more and more
schedule-oriented. So far I have been using Clojure's native
concurrency constructs, but I am becoming tempted to use Java's
concurrency primitives to get interruptability, etc. -- or maybe even
wrap a Java library like Quart