| Package | Description | 
|---|---|
| io.vertx.cassandra | |
| io.vertx.reactivex.cassandra | |
| io.vertx.rxjava.cassandra | 
| Modifier and Type | Method and Description | 
|---|---|
ResultSet | 
ResultSet.all(Handler<AsyncResult<List<com.datastax.oss.driver.api.core.cql.Row>>> handler)
The method should not be used concurrently with others like  
fetchNextPage() or #one(Handler). | 
| Modifier and Type | Method and Description | 
|---|---|
Future<ResultSet> | 
CassandraClient.execute(com.datastax.oss.driver.api.core.cql.Statement statement)
Like  
CassandraClient.execute(Statement, Handler) but returns a Future of the asynchronous result. | 
Future<ResultSet> | 
CassandraClient.execute(String query)
Like  
CassandraClient.execute(String, Handler) but returns a Future of the asynchronous result. | 
Future<ResultSet> | 
ResultSet.fetchNextPage()  | 
| Modifier and Type | Method and Description | 
|---|---|
CassandraClient | 
CassandraClient.execute(com.datastax.oss.driver.api.core.cql.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. 
 | 
void | 
ResultSet.fetchNextPage(Handler<AsyncResult<ResultSet>> handler)
Like  
fetchNextPage() but with a direct callback. | 
| Modifier and Type | Method and Description | 
|---|---|
ResultSet | 
ResultSet.getDelegate()  | 
| Modifier and Type | Method and Description | 
|---|---|
static ResultSet | 
ResultSet.newInstance(ResultSet arg)  | 
| Constructor and Description | 
|---|
ResultSet(ResultSet delegate)  | 
| Modifier and Type | Method and Description | 
|---|---|
ResultSet | 
ResultSet.getDelegate()  | 
| Modifier and Type | Method and Description | 
|---|---|
static ResultSet | 
ResultSet.newInstance(ResultSet arg)  | 
| Constructor and Description | 
|---|
ResultSet(ResultSet delegate)  | 
Copyright © 2020 Eclipse. All rights reserved.