* @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); }