Ejemplo n.º 1
0
 /**
  * Marks that a Job is still being processed
  *
  * @param JobInterface $job Job
  * @return int Number of seconds that the job visibility was postponed
  */
 public function processing(JobInterface $job)
 {
     $this->checkConnected();
     return $this->client->working($job->getId());
 }