Class SimpleSearchScrollResult<H>
java.lang.Object
org.hibernate.search.engine.search.query.spi.SimpleSearchScrollResult<H>
- All Implemented Interfaces:
SearchScrollResult<H>
-
Constructor Summary
ConstructorsConstructorDescriptionSimpleSearchScrollResult
(SearchResultTotal resultTotal, boolean hasHits, List<H> hits, Duration took, Boolean timedOut) -
Method Summary
-
Constructor Details
-
SimpleSearchScrollResult
public SimpleSearchScrollResult(SearchResultTotal resultTotal, boolean hasHits, List<H> hits, Duration took, Boolean timedOut)
-
-
Method Details
-
total
- Specified by:
total
in interfaceSearchScrollResult<H>
- Returns:
- The total for a search result, pertaining to all matched documents,
independently from the current chunk of
SearchScrollResult.hits()
. Includes in particular the total hit count.
-
hasHits
public boolean hasHits()Description copied from interface:SearchScrollResult
Returns true if this scrolling result contains some index hits.Notice that it is possible for this method to return
true
whileSearchScrollResult.hits()
returns an empty list, e.g.: if matching entities could not be found in the database.This methods is mainly useful as a stop condition in loops.
- Specified by:
hasHits
in interfaceSearchScrollResult<H>
- Returns:
- if there are still some index result hits.
-
hits
- Specified by:
hits
in interfaceSearchScrollResult<H>
- Returns:
- The hits of this scrolling result as a
List
containing one element for each matched entity.
-
took
- Specified by:
took
in interfaceSearchScrollResult<H>
- Returns:
- the time taken to process the request, as a
Duration
-
timedOut
public boolean timedOut()- Specified by:
timedOut
in interfaceSearchScrollResult<H>
- Returns:
- whether or not a timeout occurred processing the request.
-