PaginatingSearchEngine.php 412 B

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