think\Process::hasBeenSignaled PHP Метод

hasBeenSignaled() публичный Метод

是否未捕获的信号已被终止子进程
public hasBeenSignaled ( ) : boolean
Результат boolean
    public function hasBeenSignaled()
    {
        $this->requireProcessIsTerminated(__FUNCTION__);
        if ($this->isSigchildEnabled()) {
            throw new \RuntimeException('This PHP has been compiled with --enable-sigchild. Term signal can not be retrieved.');
        }
        $this->updateStatus(false);
        return $this->processInformation['signaled'];
    }