Exemplo n.º 1
0
 /**
  * @inheritdoc
  */
 public function addJobToQueue(Queue $queue, Job &$job)
 {
     $json = JobReflector::toJSON($job);
     $this->client->lpush($this->getKeyForQueue($queue), $json);
     return 0;
 }