Package com.tangosol.util
Interface QueryRecord.PartialResult
- 
- All Known Implementing Classes:
 SimpleQueryRecord.PartialResult
- Enclosing interface:
 - QueryRecord
 
public static interface QueryRecord.PartialResultA QueryRecord.PartialResult is a partial query record that contains recorded costs for a query operation. Partial results are collected in a query record by aQueryRecorder. 
- 
- 
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceQueryRecord.PartialResult.ExplainStepA QueryRecord.ExplainStep is aQueryRecord.PartialResult.RecordableStepthat provides the ability to record the estimated cost of evaluating a filter as part of a query operation.static interfaceQueryRecord.PartialResult.IndexLookupRecordAn IndexLookupRecord holds the recorded information about an index lookup performed during filter evaluation as part of a query record.static interfaceQueryRecord.PartialResult.RecordableStepA QueryRecord.RecordableStep is astepthat provides the ability to record the cost of evaluating a filter as part of a query operation.static interfaceQueryRecord.PartialResult.StepA QueryRecord.Step carries the recorded cost of evaluating a filter as part of a query operation.static interfaceQueryRecord.PartialResult.TraceStepA QueryRecord.TraceStep is aQueryRecord.PartialResult.RecordableStepthat provides the ability to record the information associated with the actual cost of evaluating a filter as part of a query operation. 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PartitionSetgetPartitions()Get the set of partitions associated with this partial result.List<? extends QueryRecord.PartialResult.Step>getSteps()Get the list of steps for this query record partial result in the order that they occurred. 
 - 
 
- 
- 
Method Detail
- 
getSteps
List<? extends QueryRecord.PartialResult.Step> getSteps()
Get the list of steps for this query record partial result in the order that they occurred.- Returns:
 - the list of steps
 
 
- 
getPartitions
PartitionSet getPartitions()
Get the set of partitions associated with this partial result.- Returns:
 - the partition set
 
 
 - 
 
 -