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