public function StreamingExpressionBuilder::_topic_all in Search API Solr 4.x
Same name and namespace in other branches
- 8.3 src/Utility/StreamingExpressionBuilder.php \Drupal\search_api_solr\Utility\StreamingExpressionBuilder::_topic_all()
Eases topic() expressions if there's no specific checkpoint collection.
Return value
string A chainable streaming expression as string.
File
- src/
Utility/ StreamingExpressionBuilder.php, line 731
Class
- StreamingExpressionBuilder
- Provides methods for creating streaming expressions targeting a given index.
Namespace
Drupal\search_api_solr\UtilityCode
public function _topic_all() {
return $this
->topic($this
->_checkpoints_collection(), $this
->_collection(), 'initialCheckpoint=0', 'rows=' . $this
->getSearchAllRows(), implode(', ', func_get_args()));
}