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