Icicle\Concurrent\Forking\Fork::isRunning PHP Method

isRunning() public method

Checks if the context is running.
public isRunning ( ) : boolean
return boolean True if the context is running, otherwise false.
    public function isRunning() : bool
    {
        return 0 !== $this->pid && false !== posix_getpgid($this->pid);
    }