vote up 0 vote down star

For the daemons' options :multiple => true , so, It allows me to start multiple instance of background process.

now, when run command stop it stop all background processes, How can i stop them individually?

Note: I know we can kill by pid but i want the ticker to at_exit as well.

flag

1 Answer

vote up 0 vote down check

The at_exit code should still execute provided you use a suitable signal when killing the process. e.g. if you use SIGINT rather than SIGKILL

Process.kill('SIGINT', pid)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.