当前位置: 首页>>代码示例>>PHP>>正文


PHP Job::fire方法代码示例

本文整理汇总了PHP中Illuminate\Queue\Jobs\Job::fire方法的典型用法代码示例。如果您正苦于以下问题:PHP Job::fire方法的具体用法?PHP Job::fire怎么用?PHP Job::fire使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Illuminate\Queue\Jobs\Job的用法示例。


在下文中一共展示了Job::fire方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: fire

 /**
  * Fire the job.
  *
  * @return void
  */
 public function fire()
 {
     if (method_exists($this, 'resolveAndFire')) {
         $this->resolveAndFire(json_decode($this->getRawBody(), true));
         return;
     }
     parent::fire();
 }
开发者ID:dusterio,项目名称:laravel-aws-worker,代码行数:13,代码来源:AwsJob.php

示例2: process

 /**
  * Process a given job from the queue.
  *
  * @param  \Illuminate\Queue\Jobs\Job  $job
  * @param  int  $delay
  * @return void
  */
 public function process(Job $job, $delay)
 {
     try {
         // First we will fire off the job. Once it is done we will see if it will
         // be auto-deleted after processing and if so we will go ahead and run
         // the delete method on the job. Otherwise we will just keep moving.
         $job->fire();
         if ($job->autoDelete()) {
             $job->delete();
         }
     } catch (\Exception $e) {
         // If we catch an exception, we will attempt to release the job back onto
         // the queue so it is not lost. This will let is be retried at a later
         // time by another listener (or the same one). We will do that here.
         $job->release($delay);
         throw $e;
     }
 }
开发者ID:centaurustech,项目名称:sagip,代码行数:25,代码来源:Worker.php

示例3: fire

 /**
  * Fire the job.
  *
  * @return void
  */
 public function fire()
 {
     $this->job->fire();
 }
开发者ID:exolnet,项目名称:laravel-queue,代码行数:9,代码来源:ProxyJob.php


注:本文中的Illuminate\Queue\Jobs\Job::fire方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。