1 | <?php |
||
9 | class DoctrineJobFlightManager extends EntityRepository implements JobFlightManager |
||
10 | { |
||
11 | /** |
||
12 | * {@inheritdoc} |
||
13 | */ |
||
14 | public function departed(int $jobId, string $queue): void |
||
19 | |||
20 | /** |
||
21 | * {@inheritdoc} |
||
22 | */ |
||
23 | public function latestJobFlightOfJobId(int $jobId): JobFlight |
||
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | public function acknowledged(int $jobId): void |
||
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | public function abandoned(int $jobId): void |
||
45 | |||
46 | /** |
||
47 | * {@inheritdoc} |
||
48 | */ |
||
49 | public function requeued(int $jobId): void |
||
56 | |||
57 | /** |
||
58 | * {@inheritdoc} |
||
59 | */ |
||
60 | public function rejected(int $jobId): void |
||
65 | |||
66 | /** |
||
67 | * {@inheritdoc} |
||
68 | */ |
||
69 | public function letGo(int $jobId): void |
||
74 | } |
||
75 |