Interface StoreCostResult
- All Known Subinterfaces:
CostEstimate
- All Known Implementing Classes:
CostEstimateImpl
public interface StoreCostResult
Manage the result information from a single call to
StoreCostController.getScanCost().
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiondoubleGet the estimated cost.longGet the estimated row count.voidsetEstimatedCost(double cost) Set the estimated cost.voidsetEstimatedRowCount(long count) Set the estimated row count.
-
Method Details
-
getEstimatedRowCount
long getEstimatedRowCount()Get the estimated row count. -
setEstimatedRowCount
void setEstimatedRowCount(long count) Set the estimated row count. -
getEstimatedCost
double getEstimatedCost()Get the estimated cost. -
setEstimatedCost
void setEstimatedCost(double cost) Set the estimated cost.
-