/**
  * {@inheritDoc}
  */
 public function touch($job)
 {
     if ($this->dispatcher) {
         $this->dispatcher->dispatch(CommandEvent::TOUCH, new CommandEvent($this, ['job' => $job]));
     }
     $this->pheanstalk->touch($job);
     return $this;
 }