objectManager = $objectManager; $this->configPool = $configPool; $this->instanceName = $instanceName; } /** * {@inheritdoc} * @since 102.0.1 */ public function create($queueName, $connectionName) { return $this->objectManager->create( $this->instanceName, [ 'amqpConfig' => $this->configPool->get($connectionName), 'queueName' => $queueName ] ); } }