wiki.techinc.nl/includes/search/PaginatingSearchEngine.php
David Causse 6af636fb03 Add ISearchResultSet
Bug: T228626
Change-Id: I3306bf6107c97dd58adf578fd965bd11a422627d
2019-07-22 18:27:39 +00:00

12 lines
412 B
PHP

<?php
/**
* Marker class for search engines that can handle their own pagination, by
* reporting in their ISearchResultSet when a next page is available. This
* only applies to search{Title,Text} and not to completion search.
*
* SearchEngine implementations not implementing this interface will have
* an over-fetch performed to determine next page availability.
*/
interface PaginatingSearchEngine {
}