* Sends a new BATCH, QUERY or EXECUTE request. * @param {Request} request * @param {ExecutionOptions} execOptions * @param {Client} client Client instance used to retrieve and set the keyspace. * @returns {Promise }
(request, execOptions, client)
| 62 | * @returns {Promise<ResultSet>} |
| 63 | */ |
| 64 | static send(request, execOptions, client) { |
| 65 | const instance = new RequestHandler(request, execOptions, client); |
| 66 | return instance.send(); |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * Gets a connection from the next host according to the query plan or throws a NoHostAvailableError. |
no test coverage detected