1 | <?php |
||
5 | class Job extends \Dtc\QueueBundle\Model\MessageableJob |
||
6 | { |
||
7 | protected $deliveryTag; |
||
8 | |||
9 | /** |
||
10 | * @return string |
||
11 | */ |
||
12 | 2 | public function getDeliveryTag() |
|
16 | |||
17 | /** |
||
18 | * @param mixed $deliveryTag |
||
19 | */ |
||
20 | 7 | public function setDeliveryTag($deliveryTag) |
|
24 | |||
25 | /** |
||
26 | * @return string A json_encoded version of a queueable version of the object |
||
27 | */ |
||
28 | 7 | public function toMessage() |
|
35 | |||
36 | /** |
||
37 | * @param string $message a json_encoded version of the object |
||
38 | */ |
||
39 | 7 | public function fromMessage($message) |
|
49 | } |
||
50 |