Job.php
1.27 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
namespace common\components\jqueue\db;
use common\components\jqueue\base\Job as BaseJob;
/**
* Class Job
* @package common\components\jqueue\db
*/
class Job extends BaseJob
{
/**
* 数据库记录对象
* @var
*/
public $model;
public function init()
{
parent::init();
$this->model->attempts = $this->model->attempts + 1;
}
/**
* 获取队列任务执行次数
* @return mixed
*/
public function getAttempts()
{
return (int)$this->model->attempts;
}
/**
* 获取队列任务数据
* @return mixed
*/
public function getPayload()
{
return $this->model->payload;
}
/**
* 获取对垒任务id
* @return mixed
*/
public function getJobId()
{
return $this->model->id;
}
/**
* 将任务重新加入队列
* @param int $delay
*/
public function release($delay = 0)
{
parent::release($delay);
$this->delete();
$this->queueInstance->release($this->queueName, $this->model, $delay);
}
/*
* 删除任务
*/
public function delete()
{
parent::delete();
$this->queueInstance->deleteReserved($this->queueName, $this->model->id);
}
}