zm
2021-04-09 93652ca875fc904a25a7f214adc548745573950a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/**
 * Queue服务配置测试,请勿删除
 */
 
namespace app\jobs;
 
 
use app\forms\common\CommonOption;
use yii\queue\JobInterface;
use yii\queue\Queue;
 
class TestQueueServiceJob implements JobInterface
{
 
    public $time;
 
    /**
     * @param Queue $queue which pushed and is handling the job
     * @return void|mixed result of the job execution
     */
    public function execute($queue)
    {
        CommonOption::set($this->getKey(), intval($this->time));
    }
 
 
    public function valid()
    {
        $result = CommonOption::get($this->getKey());
        return intval($result) === intval($this->time);
    }
 
    private function getKey()
    {
        return 'test_queue_service_job_time';
    }
}