码迷,mamicode.com
首页 > 其他好文 > 详细

【laravel】 Laravel延迟队列

时间:2019-08-11 18:56:24      阅读:713      评论:0      收藏:0      [点我收藏+]

标签:turn   imp   构造   this   --   obs   space   should   names   

定义延迟队列的两种方式

一 、任务分发的时候指定

\App\Jobs\Jober::dispatch()->delay(20);

二、定义Jober时构造方法中指定

<?php
namespace App\Jobs;
---------------------------------------------------
class Timer implements ShouldQueue
{
   -----------------------------------------------
    public function __construct()
    {
        $this->delay(20);
    }
    /**
     * Execute the job.
     * @return void
     */
    public function handle()
    {
       ---------------------------------------------------
    }
}

三、通过 delay 属性指定

<?php
namespace App\Jobs;
---------------------------------------------------
class Timer implements ShouldQueue
{
     public $delay = 30;
   -----------------------------------------------
    public function __construct()
    {
    }
    /**
     * Execute the job.
     * @return void
     */
    public function handle()
    {
       ---------------------------------------------------
    }
}

【laravel】 Laravel延迟队列

标签:turn   imp   构造   this   --   obs   space   should   names   

原文地址:https://blog.51cto.com/suiwnet/2428598

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!