use of org.apache.asterix.experiment.action.derived.TimedAction in project asterixdb by apache.
the class AbstractExperiment8Builder method doBuildProtocolAction.
protected void doBuildProtocolAction(SequentialActionList seq, int round) throws Exception {
for (int i = 0; i < nQueryRuns; ++i) {
// String aql = getPointLookUpAQL(round);
// seq.add(new TimedAction(new RunAQLStringAction(httpClient, restHost, restPort, aql)));
String aql = getRangeAQL(round);
seq.add(new TimedAction(new RunAQLStringAction(httpClient, restHost, restPort, aql)));
}
}
Aggregations