Beispiel #1
0
 /**
  * Migrate the delayed jobs that are ready to the regular queue.
  *
  * @param string $from
  * @param string $to
  * @return void 
  * @static 
  */
 public static function migrateExpiredJobs($from, $to)
 {
     \Illuminate\Queue\RedisQueue::migrateExpiredJobs($from, $to);
 }
 /**
  * {@inheritdoc}
  */
 public function migrateExpiredJobs($from, $to)
 {
     parent::migrateExpiredJobs($from, $to);
     $this->addQueueIfNotLocked(substr($to, 7));
 }