Checks if the process has been started with no regard to the current state.
Return value
Boolean true if status is ready, false otherwise
File
- drupal/core/vendor/symfony/process/Symfony/Component/Process/Process.php, line 715
Class
- Process
- Process is a thin wrapper around proc_* functions to ease
start independent PHP processes.
Namespace
Symfony\Component\Process
Code
public function isStarted() {
return $this->status != self::STATUS_READY;
}