PHPDaemon\Thread\Master::sigusr2 PHP Method

sigusr2() protected method

Handler for the SIGUSR2 (graceful restart all workers) signal in master process
protected sigusr2 ( ) : void
return void
    protected function sigusr2()
    {
        if (Daemon::$config->logsignals->value) {
            $this->log('Caught SIGUSR2 (graceful restart all workers).');
        }
        $this->signalToChildren(SIGUSR2);
    }