Home
last modified time | relevance | path

Searched refs:ResultSet (Results 1 – 18 of 18) sorted by path

/plugin/authgooglesheets/vendor/google/apiclient-services/src/Spanner/
H A DExecuteBatchDmlResponse.php23 protected $resultSetsType = ResultSet::class;
29 * @param ResultSet[]
36 * @return ResultSet[]
H A DResultSet.php20 class ResultSet extends \Google\Collection class
77 class_alias(ResultSet::class, 'Google_Service_Spanner_ResultSet');
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Spanner/Resource/
H A DProjectsInstancesDatabasesSessions.php35 use Google\Service\Spanner\ResultSet; alias
186 * @return ResultSet
192 return $this->call('executeSql', [$params], ResultSet::class);
314 * @return ResultSet
320 return $this->call('read', [$params], ResultSet::class);
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md85 * Added explicit return annotation to `Elastica\Multi\ResultSet::current()` and `Elastica\Multi\ResultSet::offsetGet()` by @franmomu [2056](https://github.com/ruflin/Elastica/pull/2056)
147 * Added exposure of Point-In-Time ID for search responses in `Elastica\ResultSet::getPointInTimeId()` [#1991](https://github.com/ruflin/Elastica/pull/1991)
310 * Scroll releases previous ResultSet from memory before calling ES for next data batch [#1740](https://github.com/ruflin/Elastica/pull/1740)
330 * Added `\Elastica\ResultSet::getTotalHitsRelation()` to get relation for total hits [#1694](https://github.com/ruflin/Elastica/pull/1694)
427 * `\Elastica\ResultSet::next` returns `void` instead of `\Elastica\Result|false`
429 * `\Elastica\Multi\ResultSet::current` returns `\Elastica\ResultSet` instead of `\Elastica\ResultSet|false`
716 - Changed visibility from protected to private Elastica\ResultSet
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DIndex.php16 use Elastica\ResultSet\BuilderInterface;
542 public function search($query = '', $options = null, string $method = Request::POST): ResultSet
H A DResultSet.php15 class ResultSet implements \Iterator, \Countable, \ArrayAccess class
320 throw new InvalidException('ResultSet is a collection of Result only.');
H A DScroll.php35 * @var ResultSet|null
62 public function current(): ResultSet
65 throw new InvalidException('Could not fetch the current ResultSet from an invalid iterator. Did you forget to call "valid()"?');
172 protected function _setScrollId(ResultSet $resultSet): void
H A DSearch.php11 use Elastica\ResultSet\BuilderInterface;
12 use Elastica\ResultSet\DefaultBuilder;
335 public function search($query = '', $options = null, string $method = Request::POST): ResultSet
359 * @param bool $fullResult By default only the total hit count is returned. If set to true, the full ResultSet including aggregations is returned
365 * @return int|ResultSet
H A DSearchableInterface.php48 public function search($query = '', $options = null, string $method = Request::POST): ResultSet;
/plugin/elasticsearch/vendor/ruflin/elastica/src/Multi/
H A DMultiBuilder.php6 use Elastica\ResultSet as BaseResultSet;
14 public function buildMultiResultSet(Response $response, array $searches): ResultSet
18 return new ResultSet($response, $resultSets);
H A DMultiBuilderInterface.php13 public function buildMultiResultSet(Response $response, array $searches): ResultSet;
H A DResultSet.php6 use Elastica\ResultSet as BaseResultSet;
14 class ResultSet implements \Iterator, \ArrayAccess, \Countable class
H A DSearch.php129 public function search(): ResultSet
/plugin/elasticsearch/vendor/ruflin/elastica/src/ResultSet/
H A DBuilderInterface.php3 namespace Elastica\ResultSet;
7 use Elastica\ResultSet; alias
12 * Builds a ResultSet given a specific response and query.
14 public function buildResultSet(Response $response, Query $query): ResultSet;
H A DChainProcessor.php3 namespace Elastica\ResultSet;
5 use Elastica\ResultSet; alias
9 * ResultSet, calling each in turn.
29 public function process(ResultSet $resultSet): void
H A DDefaultBuilder.php3 namespace Elastica\ResultSet;
8 use Elastica\ResultSet; alias
13 * Builds a ResultSet for a given Response.
15 public function buildResultSet(Response $response, Query $query): ResultSet
19 return new ResultSet($response, $query, $results);
H A DProcessingBuilder.php3 namespace Elastica\ResultSet;
7 use Elastica\ResultSet; alias
28 * Runs any registered transformers on the ResultSet before
32 public function buildResultSet(Response $response, Query $query): ResultSet
H A DProcessorInterface.php3 namespace Elastica\ResultSet;
5 use Elastica\ResultSet; alias
10 * Iterates over a ResultSet allowing a processor to iterate over any
13 public function process(ResultSet $resultSet);