Re: executing tasks on a schedule

2009-06-29 Thread Kyle R. Burton
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://

Re: executing tasks on a schedule

2009-06-26 Thread ataggart
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  

Re: executing tasks on a schedule

2009-06-26 Thread Berlin Brown
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.

executing tasks on a schedule

2009-06-26 Thread Stuart Halloway
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