Checks if the process is currently running.
Boolean true if the process is currently running, false otherwise
public function isRunning() {
if (self::STATUS_STARTED !== $this->status) {
return false;
}
$this
->updateStatus();
return $this->processInformation['running'];
}