mp:process-run-function
— Create a task and execute a function in it.
(mp:process-run-function
name) ⇒ function) ⇒ &rest) ⇒ function-args)
| A symbol to name the process. Processes can be unnamed and names need not be unique. |
| A function object, interpreted or compiled. |
| One or more arguments which will be passed to the function. |
This function creates a new process using mp:make-process
, associates a function to it and then
starts it using mp:process-preset
.