1 | <?php |
||
16 | class Random extends AbstractStrategy |
||
17 | { |
||
18 | /** |
||
19 | * @return void |
||
20 | */ |
||
21 | public function init() |
||
26 | |||
27 | /** |
||
28 | * The number of attempt before returning false. |
||
29 | * |
||
30 | * @var int |
||
31 | */ |
||
32 | public $maxAttempt = 5; |
||
33 | |||
34 | /** |
||
35 | * @inheritdoc |
||
36 | */ |
||
37 | protected function getJobFromQueues() |
||
55 | } |
||
56 |