run method
Implementation
Future run(Connection c, [globalOptargs]) {
if (c == null) {
throw RqlDriverError("RqlQuery.run must be given a connection to run.");
}
return c._start(this, globalOptargs);
}
Future run(Connection c, [globalOptargs]) {
if (c == null) {
throw RqlDriverError("RqlQuery.run must be given a connection to run.");
}
return c._start(this, globalOptargs);
}