com.datastax.ebdrivers.dsegraph.statements.BindableGraphStatementsTemplate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of driver-dsegraph-shaded Show documentation
Show all versions of driver-dsegraph-shaded Show documentation
A DSE Graph ActivityType driver for nosqlbench, based on http://nosqlbench.io/
package com.datastax.ebdrivers.dsegraph.statements;
import java.util.ArrayList;
import java.util.List;
import java.util.stream.Collectors;
public class BindableGraphStatementsTemplate {
private final List templateList = new ArrayList<>();
public void addTemplate(ReadyGraphStatementTemplate template) {
this.templateList.add(template);
}
public List resolve() {
return templateList.stream().map(ReadyGraphStatementTemplate::resolve)
.collect(Collectors.toList());
}
public int size() {
return templateList.size();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy