Home
last modified time | relevance | path

Searched refs:connectionPoolParams (Results 1 – 6 of 6) sorted by relevance

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/ConnectionPool/
H A DAbstractConnectionPool.php52 protected $connectionPoolParams; variable in Elasticsearch\\ConnectionPool\\AbstractConnectionPool
65 * @param array $connectionPoolParams
67 public function __construct(array $connections, SelectorInterface $selector, ConnectionFactoryInterface $factory, array $connectionPoolParams) argument
69 $paramList = array('connections', 'selector', 'connectionPoolParams');
76 if (isset($connectionPoolParams['randomizeHosts']) === true
77 && $connectionPoolParams['randomizeHosts'] === true
85 $this->connectionPoolParams = $connectionPoolParams;
H A DSniffingConnectionPool.php43 public function __construct($connections, SelectorInterface $selector, ConnectionFactoryInterface $factory, $connectionPoolParams) argument
45 parent::__construct($connections, $selector, $factory, $connectionPoolParams);
47 $this->setConnectionPoolParams($connectionPoolParams);
161 private function setConnectionPoolParams(array $connectionPoolParams) argument
163 if (isset($connectionPoolParams['sniffingInterval']) === true) {
164 $this->sniffingInterval = $connectionPoolParams['sniffingInterval'];
H A DSimpleConnectionPool.php32 public function __construct($connections, SelectorInterface $selector, ConnectionFactoryInterface $factory, $connectionPoolParams) argument
34 parent::__construct($connections, $selector, $factory, $connectionPoolParams);
H A DStaticNoPingConnectionPool.php42 public function __construct($connections, SelectorInterface $selector, ConnectionFactoryInterface $factory, $connectionPoolParams) argument
44 parent::__construct($connections, $selector, $factory, $connectionPoolParams);
H A DStaticConnectionPool.php42 public function __construct($connections, SelectorInterface $selector, ConnectionFactoryInterface $factory, $connectionPoolParams) argument
44 parent::__construct($connections, $selector, $factory, $connectionPoolParams);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dconnection-pool.asciidoc171 public function __construct($connections, SelectorInterface $selector, ConnectionFactory $factory, $connectionPoolParams)
173 parent::__construct($connections, $selector, $factory, $connectionPoolParams);