-
Notifications
You must be signed in to change notification settings - Fork 33
/
ActiveJob.php
56 lines (49 loc) · 1.02 KB
/
ActiveJob.php
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
<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yii\queue;
use Yii;
use yii\base\Object;
/**
* ActiveJob
*
* @author Alexander Kochetov <[email protected]>
*/
abstract class ActiveJob extends Object
{
/**
* @var array
*/
public $serializer = ['serialize', 'unserialize'];
/**
* Runs the job.
*/
abstract public function run();
/**
* @return string
*/
abstract public function queueName();
/**
* @return QueueInterface
*/
public static function getQueue()
{
return Yii::$app->get('queue');
}
/**
* Pushs the job.
*
* @param integer $delay
* @return string
*/
public function push($delay = 0)
{
return $this->getQueue()->push([
'serializer' => $this->serializer,
'object' => call_user_func($this->serializer[0], $this),
], $this->queueName(), $delay);
}
}