1 | <?php |
||
10 | class ProcessorInterfaceAdapter implements ProcessorInterface |
||
11 | { |
||
12 | use |
||
13 | EventDispatcherAware, |
||
14 | MessageProcessorAware; |
||
15 | |||
16 | 1 | private |
|
17 | $workerContext; |
||
18 | 1 | ||
19 | 1 | public function __construct(WorkerContext $workerContext) |
|
24 | 1 | ||
25 | public function process(\Swarrot\Broker\Message $message, array $options) |
||
49 | 1 | ||
50 | private function onWorkerProcess() |
||
54 | 1 | ||
55 | private function onWorkerProcessed() |
||
59 | } |
||
60 |