Example #1
0
 /**
  * Acknowledges a Job as properly handled
  *
  * @param JobInterface $job Job
  * @return void
  */
 public function processed(JobInterface $job)
 {
     $this->checkConnected();
     $this->client->ackJob($job->getId());
 }