views:

95

answers:

3

I would like to start a timer in my common lisp application that after a certain amount of time it will call a certain method. What would be the best way to accomplish this?

+1  A: 

http://www.cliki.net/TIMER implements relative time based scheduling, which i THINK is what you mean

bigjust
+2  A: 

Hi. It's SBCL-dependent, but you might want to try out Zach Beane's TIMER.

jkndrkn
+2  A: 

Would something as simple as SLEEP work?

Xach