PHPDaemon\Thread\IPC::sigtstp PHP Méthode

sigtstp() protected méthode

Handler of the SIGTSTP (graceful stop) signal in worker process.
protected sigtstp ( ) : void
Résultat void
    protected function sigtstp()
    {
        if (Daemon::$config->logsignals->value) {
            $this->log('Caught SIGTSTP (graceful stop all workers).');
        }
        $this->shutdown();
    }