Esempio n. 1
0
 /**
  * Is another process alive and working on this folder?
  *
  * @return bool
  */
 public function isOtherProcessAlive()
 {
     if (!$this->output->has($this->aliveFile)) {
         return false;
     }
     if ($this->output->read($this->aliveFile) < time() - $this->settings->timeout()) {
         return false;
     }
     return true;
 }