| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?php
- namespace Elasticsearch\Connections;
- use Elasticsearch\Serializers\SerializerInterface;
- use Psr\Log\LoggerInterface;
- /**
- * Class AbstractConnection
- *
- * @category Elasticsearch
- * @package Elasticsearch\Connections
- * @author Zachary Tong <zach@elastic.co>
- * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2
- * @link http://elastic.co
- */
- class ConnectionFactory implements ConnectionFactoryInterface
- {
- /** @var array */
- private $connectionParams;
- /** @var SerializerInterface */
- private $serializer;
- /** @var LoggerInterface */
- private $logger;
- /** @var LoggerInterface */
- private $tracer;
- /** @var callable */
- private $handler;
- /**
- * Constructor
- *
- * @param callable $handler
- * @param array $connectionParams
- * @param SerializerInterface $serializer
- * @param LoggerInterface $logger
- * @param LoggerInterface $tracer
- */
- public function __construct(callable $handler, array $connectionParams, SerializerInterface $serializer, LoggerInterface $logger, LoggerInterface $tracer)
- {
- $this->handler = $handler;
- $this->connectionParams = $connectionParams;
- $this->logger = $logger;
- $this->tracer = $tracer;
- $this->serializer = $serializer;
- }
- /**
- * @param $hostDetails
- *
- * @return ConnectionInterface
- */
- public function create($hostDetails)
- {
- return new Connection(
- $this->handler,
- $hostDetails,
- $this->connectionParams,
- $this->serializer,
- $this->logger,
- $this->tracer
- );
- }
- }
|