Package com.tangosol.util
Interface QueryRecord
- All Known Implementing Classes:
 SimpleQueryRecord
public interface QueryRecord
The QueryRecord object carries information regarding the estimated or actual
 execution cost for a query operation.
- Since:
 - Coherence 3.7.1
 - Author:
 - tb 2011.05.26
 
- 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interfaceA QueryRecord.PartialResult is a partial query record that contains recorded costs for a query operation. - 
Method Summary
Modifier and TypeMethodDescriptionList<? extends QueryRecord.PartialResult> Get the list of partial results for this query record.getType()Get thetypethat was specified when this query record was created. 
- 
Method Details
- 
getType
QueryRecorder.RecordType getType()Get thetypethat was specified when this query record was created.- Returns:
 - the record type
 
 - 
getResults
List<? extends QueryRecord.PartialResult> getResults()Get the list of partial results for this query record.- Returns:
 - the list of results
 
 
 -