Function
mp
make-named-timer name function &rest arguments => timer
A string or symbol
A function
A set of arguments to function
A timer
make-named-timer
function creates and returns a named timer. The first argument is a string or symbol naming the timer. The second argument is a function to be applied to the remaining arguments when the timer expires. Use the functionschedule-timer
orschedule-timer-relative
to set an expiration time. make-timer
creates an unnamed timer. (setq timer (mp:make-named-timer 'timer-1 'print 10 *standard-output*)) #<Time Event : PRINT>