Hi,

I'm about to implementera a task scheduler in a Clojure web app. It should do 
various tasks such as cleaning up temporary files, send e-mail reminders to 
users, and flagging database entries based on rules. It is currently 
implemented in a php script which runs as a Cron job and executes task objects 
(one for each task) that inherit from a task superclass that has methods such 
as initialize, execute, and finish. But now I want to implement it using 
Clojure idioms. 

Are there good libraries/examples of
- A scheduling function that executes a task runner every X minutes?
- An abstract description of a task with methods and timeout rules?
- An extensible task list that can prioritize tasks according to conditions 
such as time of day, time since last run, or other arbitrary conditions?

Thanks,
Brjánn Ljótsson

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to