| 123456789101112131415161718192021222324 |
- <?php
- namespace Elasticsearch\ConnectionPool\Selectors;
- /**
- * Class RandomSelector
- *
- * @category Elasticsearch
- * @package Elasticsearch\Connections\Selectors
- * @author Zachary Tong <zach@elastic.co>
- * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2
- * @link http://elastic.co
- */
- interface SelectorInterface
- {
- /**
- * Perform logic to select a single ConnectionInterface instance from the array provided
- *
- * @param \Elasticsearch\Connections\ConnectionInterface[] $connections an array of ConnectionInterface instances to choose from
- *
- * @return \Elasticsearch\Connections\ConnectionInterface
- */
- public function select($connections);
- }
|