Package | Description |
---|---|
io.vertx.rxjava.cassandra |
Modifier and Type | Field and Description |
---|---|
static TypeArg<ResultSet> |
ResultSet.__TYPE_ARG |
Modifier and Type | Method and Description |
---|---|
ResultSet |
ResultSet.all(io.vertx.core.Handler<io.vertx.core.AsyncResult<List<com.datastax.driver.core.Row>>> handler)
The method should not be used concurrently with others like
several(int, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.util.List<com.datastax.driver.core.Row>>>) or one(io.vertx.core.Handler<io.vertx.core.AsyncResult<com.datastax.driver.core.Row>>) . |
ResultSet |
ResultSet.fetchMoreResults(io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> handler) |
static ResultSet |
ResultSet.newInstance(io.vertx.cassandra.ResultSet arg) |
ResultSet |
ResultSet.one(io.vertx.core.Handler<io.vertx.core.AsyncResult<com.datastax.driver.core.Row>> handler)
The method should not be used concurrently with others like
several(int, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.util.List<com.datastax.driver.core.Row>>>) or all(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.util.List<com.datastax.driver.core.Row>>>) . |
ResultSet |
ResultSet.several(int amount,
io.vertx.core.Handler<io.vertx.core.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 |
---|---|
rx.Single<ResultSet> |
CassandraClient.rxExecute(com.datastax.driver.core.Statement statement)
Execute the statement and provide a handler for consuming results.
|
rx.Single<ResultSet> |
CassandraClient.rxExecute(String query)
Execute the query and provide a handler for consuming results.
|
Modifier and Type | Method and Description |
---|---|
CassandraClient |
CassandraClient.execute(com.datastax.driver.core.Statement statement,
io.vertx.core.Handler<io.vertx.core.AsyncResult<ResultSet>> resultHandler)
Execute the statement and provide a handler for consuming results.
|
CassandraClient |
CassandraClient.execute(String query,
io.vertx.core.Handler<io.vertx.core.AsyncResult<ResultSet>> resultHandler)
Execute the query and provide a handler for consuming results.
|
Copyright © 2019 Eclipse. All rights reserved.