Package com.tangosol.util
Interface QueryRecord.PartialResult
-
- All Known Implementing Classes:
SimpleQueryRecord.PartialResult
- Enclosing interface:
- QueryRecord
public static interface QueryRecord.PartialResult
A 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 interface
QueryRecord.PartialResult.ExplainStep
A QueryRecord.ExplainStep is aQueryRecord.PartialResult.RecordableStep
that provides the ability to record the estimated cost of evaluating a filter as part of a query operation.static interface
QueryRecord.PartialResult.IndexLookupRecord
An IndexLookupRecord holds the recorded information about an index lookup performed during filter evaluation as part of a query record.static interface
QueryRecord.PartialResult.RecordableStep
A QueryRecord.RecordableStep is astep
that provides the ability to record the cost of evaluating a filter as part of a query operation.static interface
QueryRecord.PartialResult.Step
A QueryRecord.Step carries the recorded cost of evaluating a filter as part of a query operation.static interface
QueryRecord.PartialResult.TraceStep
A QueryRecord.TraceStep is aQueryRecord.PartialResult.RecordableStep
that 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 PartitionSet
getPartitions()
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
-
-