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 Classes Modifier and Type Interface Description static interface
QueryRecord.PartialResult
A QueryRecord.PartialResult is a partial query record that contains recorded costs for a query operation.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<? extends QueryRecord.PartialResult>
getResults()
Get the list of partial results for this query record.QueryRecorder.RecordType
getType()
Get thetype
that was specified when this query record was created.
-
-
-
Method Detail
-
getType
QueryRecorder.RecordType getType()
Get thetype
that 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
-
-