run method

Future run(
  1. Connection c, [
  2. dynamic globalOptargs
])

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);
}