Icicle\Concurrent\Process\Process::isRunning PHP 메소드

isRunning() 공개 메소드

Determines if the process is still running.
public isRunning ( ) : boolean
리턴 boolean
    public function isRunning() : bool
    {
        return is_resource($this->process);
    }

Usage Example

예제 #1
0
 /**
  * {@inheritdoc}
  */
 public function isRunning()
 {
     return $this->process->isRunning();
 }