![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /var/lib/gems/2.5.0/gems/eventmachine-1.2.7/lib/em/ |
Upload File : |
module EventMachine # This is subclassed from EventMachine::Connection for use with the process monitoring API. Read the # documentation on the instance methods of this class, and for a full explanation see EventMachine.watch_process. class ProcessWatch < Connection # @private Cfork = 'fork'.freeze # @private Cexit = 'exit'.freeze # @private def receive_data(data) case data when Cfork process_forked when Cexit process_exited end end # Returns the pid that EventMachine::watch_process was originally called with. def pid @pid end # Should be redefined with the user's custom callback that will be fired when the prcess is forked. # # There is currently not an easy way to get the pid of the forked child. def process_forked end # Should be redefined with the user's custom callback that will be fired when the process exits. # # stop_watching is called automatically after this callback def process_exited end # Discontinue monitoring of the process. # This will be called automatically when a process dies. User code may call it as well. def stop_watching EventMachine::unwatch_pid(@signature) end end end