![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/vendor/php-amqplib/rabbitmq-bundle/RabbitMq/ |
<?php namespace OldSound\RabbitMqBundle\RabbitMq; use OldSound\RabbitMqBundle\Provider\QueueOptionsProviderInterface; class DynamicConsumer extends Consumer { /** * Queue provider * * @var QueueOptionsProviderInterface */ protected $queueOptionsProvider = null; /** * Context the consumer runs in * * @var string */ protected $context = null; /** * QueueOptionsProvider setter * * @param QueueOptionsProviderInterface $queueOptionsProvider * * @return self */ public function setQueueOptionsProvider(QueueOptionsProviderInterface $queueOptionsProvider) { $this->queueOptionsProvider = $queueOptionsProvider; return $this; } public function setContext($context) { $this->context = $context; } protected function setupConsumer() { $this->mergeQueueOptions(); parent::setupConsumer(); } protected function mergeQueueOptions() { if (null === $this->queueOptionsProvider) { return; } $this->queueOptions = array_merge($this->queueOptions, $this->queueOptionsProvider->getQueueOptions($this->context)); } }