Ejemplo n.º 1
0
 /**
  * Create a new job and save it to the specified queue.
  *
  * @param string $queue The name of the queue to place the job in.
  * @param string $class The name of the class that contains the code to execute the job.
  * @param array $args Any optional arguments that should be passed when the job is executed.
  * @param boolean $trackStatus Set to true to be able to monitor the status of a job.
  *
  * @return string|boolean Job ID when the job was created, false if creation was cancelled due to beforeEnqueue
  */
 public static function enqueue($queue, $class, $args = null, $trackStatus = false)
 {
     $id = Resque::generateJobId();
     $hookParams = ['class' => $class, 'args' => $args, 'queue' => $queue, 'id' => $id];
     try {
         Event::trigger('beforeEnqueue', $hookParams);
     } catch (Job\DontCreate $e) {
         return false;
     }
     Job::create($queue, $class, $args, $trackStatus, $id);
     Event::trigger('afterEnqueue', $hookParams);
     return $id;
 }
Ejemplo n.º 2
0
 /**
  * Create a new job and save it to the specified queue.
  *
  * @param string $queue The name of the queue to place the job in.
  * @param string $class The name of the class that contains the code to execute the job.
  * @param array $args Any optional arguments that should be passed when the job is executed.
  * @param boolean $trackStatus Set to true to be able to monitor the status of a job.
  *
  * @return string
  */
 public static function enqueue($queue, $class, $args = null, $trackStatus = false)
 {
     $result = Job::create($queue, $class, $args, $trackStatus);
     if ($result) {
         Event::trigger('afterEnqueue', array('class' => $class, 'args' => $args, 'queue' => $queue, 'id' => $result));
     }
     return $result;
 }