Uses of Class
io.vertx.reactivex.cassandra.ResultSet
-
Packages that use ResultSet Package Description io.vertx.reactivex.cassandra -
-
Uses of ResultSet in io.vertx.reactivex.cassandra
Fields in io.vertx.reactivex.cassandra with type parameters of type ResultSet Modifier and Type Field Description static TypeArg<ResultSet>ResultSet. __TYPE_ARGMethods in io.vertx.reactivex.cassandra that return ResultSet Modifier and Type Method Description ResultSetResultSet. all()The method should not be used concurrently with others likefetchNextPage(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.cassandra.ResultSet>>)or .ResultSetResultSet. all(Handler<AsyncResult<List<com.datastax.oss.driver.api.core.cql.Row>>> handler)The method should not be used concurrently with others likefetchNextPage(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.cassandra.ResultSet>>)or .static ResultSetResultSet. newInstance(ResultSet arg)Methods in io.vertx.reactivex.cassandra that return types with arguments of type ResultSet Modifier and Type Method Description io.reactivex.Single<ResultSet>CassandraClient. rxExecute(com.datastax.oss.driver.api.core.cql.Statement statement)Execute the statement and provide a handler for consuming results.io.reactivex.Single<ResultSet>CassandraClient. rxExecute(String query)Execute the query and provide a handler for consuming results.io.reactivex.Single<ResultSet>ResultSet. rxFetchNextPage()LikefetchNextPage(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.cassandra.ResultSet>>)but with a direct callback.Method parameters in io.vertx.reactivex.cassandra with type arguments of type ResultSet Modifier and Type Method Description CassandraClientCassandraClient. execute(com.datastax.oss.driver.api.core.cql.Statement statement, Handler<AsyncResult<ResultSet>> resultHandler)Execute the statement and provide a handler for consuming results.CassandraClientCassandraClient. execute(String query, Handler<AsyncResult<ResultSet>> resultHandler)Execute the query and provide a handler for consuming results.voidResultSet. fetchNextPage(Handler<AsyncResult<ResultSet>> handler)LikefetchNextPage(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.cassandra.ResultSet>>)but with a direct callback.
-