| Modifier and Type | Method and Description |
|---|---|
ResultSet |
ResultSet.all(Handler<AsyncResult<List<com.datastax.driver.core.Row>>> handler)
The method should not be used concurrently with others like
several(int, Handler) or one(Handler). |
ResultSet |
ResultSet.fetchMoreResults(Handler<AsyncResult<Void>> handler) |
ResultSet |
ResultSet.one(Handler<AsyncResult<com.datastax.driver.core.Row>> handler)
The method should not be used concurrently with others like
several(int, Handler) or all(Handler). |
ResultSet |
ResultSet.several(int amount,
Handler<AsyncResult<List<com.datastax.driver.core.Row>>> handler)
Fetch a specific amount of rows and notify via a handler.
|
| Modifier and Type | Method and Description |
|---|---|
CassandraClient |
CassandraClient.execute(com.datastax.driver.core.Statement statement,
Handler<AsyncResult<ResultSet>> resultHandler)
Execute the statement and provide a handler for consuming results.
|
CassandraClient |
CassandraClient.execute(String query,
Handler<AsyncResult<ResultSet>> resultHandler)
Execute the query and provide a handler for consuming results.
|
Copyright © 2019 Eclipse. All rights reserved.