use of io.nosqlbench.adapter.dynamodb.optypes.DDBQueryOp in project nosqlbench by nosqlbench.
the class DDBQueryOpDispenser method apply.
@Override
public DDBQueryOp apply(long cycle) {
Table table = tableFunc.apply(cycle);
QuerySpec queryspec = querySpecFunc.apply(cycle);
return new DDBQueryOp(ddb, table, queryspec);
}
Aggregations