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