Package org.terrier.matching
Class BaseMatching.MatchingState
- java.lang.Object
-
- org.terrier.matching.BaseMatching.MatchingState
-
- Enclosing class:
- BaseMatching
protected static class BaseMatching.MatchingState extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description intnumberOfRequestedDocumentsThe number of documents that are requested to be retrieved for this query.intnumberOfRetrievedDocumentsThe number of actually retrieved documents for this query.MatchingQueryTermsqueryTermsinput query to matchingResultSetresultSetThe result set.longtotalTime
-
Constructor Summary
Constructors Modifier Constructor Description protectedMatchingState()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetTotalTime()get the total timevoidupdateEndTime(long t)Update the end time.voidupdateStartTime(long t)Update the start time
-
-
-
Field Detail
-
queryTerms
public MatchingQueryTerms queryTerms
input query to matching
-
resultSet
public ResultSet resultSet
The result set.
-
numberOfRequestedDocuments
public int numberOfRequestedDocuments
The number of documents that are requested to be retrieved for this query.
-
numberOfRetrievedDocuments
public int numberOfRetrievedDocuments
The number of actually retrieved documents for this query.
-
totalTime
public long totalTime
-
-