Uses of Class
io.vertx.rxjava.ext.sql.SQLRowStream
-
Packages that use SQLRowStream Package Description io.vertx.rxjava.ext.sql -
-
Uses of SQLRowStream in io.vertx.rxjava.ext.sql
Fields in io.vertx.rxjava.ext.sql with type parameters of type SQLRowStream Modifier and Type Field Description static TypeArg<SQLRowStream>
SQLRowStream. __TYPE_ARG
Methods in io.vertx.rxjava.ext.sql that return SQLRowStream Modifier and Type Method Description SQLRowStream
SQLRowStream. endHandler(Handler<Void> endHandler)
SQLRowStream
SQLRowStream. exceptionHandler(Handler<Throwable> handler)
SQLRowStream
SQLRowStream. handler(Handler<JsonArray> handler)
static SQLRowStream
SQLRowStream. newInstance(SQLRowStream arg)
SQLRowStream
SQLRowStream. pause()
SQLRowStream
SQLRowStream. resultSetClosedHandler(Handler<Void> handler)
Event handler when a resultset is closed.SQLRowStream
SQLRowStream. resume()
Methods in io.vertx.rxjava.ext.sql that return types with arguments of type SQLRowStream Modifier and Type Method Description rx.Single<SQLRowStream>
SQLClient. rxQueryStream(String sql)
Executes the given SQLSELECT
statement which returns the results of the query as a read stream.rx.Single<SQLRowStream>
SQLConnection. rxQueryStream(String sql)
Executes the given SQLSELECT
statement which returns the results of the query as a read stream.rx.Single<SQLRowStream>
SQLOperations. rxQueryStream(String sql)
Executes the given SQLSELECT
statement which returns the results of the query as a read stream.rx.Single<SQLRowStream>
SQLClient. rxQueryStreamWithParams(String sql, JsonArray params)
Executes the given SQLSELECT
statement which returns the results of the query as a read stream.rx.Single<SQLRowStream>
SQLConnection. rxQueryStreamWithParams(String sql, JsonArray params)
Executes the given SQLSELECT
statement which returns the results of the query as a read stream.rx.Single<SQLRowStream>
SQLOperations. rxQueryStreamWithParams(String sql, JsonArray params)
Executes the given SQLSELECT
statement which returns the results of the query as a read stream.Method parameters in io.vertx.rxjava.ext.sql with type arguments of type SQLRowStream Modifier and Type Method Description SQLClient
SQLClient. queryStream(String sql, Handler<AsyncResult<SQLRowStream>> handler)
Executes the given SQLSELECT
statement which returns the results of the query as a read stream.SQLConnection
SQLConnection. queryStream(String sql, Handler<AsyncResult<SQLRowStream>> handler)
Executes the given SQLSELECT
statement which returns the results of the query as a read stream.SQLOperations
SQLOperations. queryStream(String sql, Handler<AsyncResult<SQLRowStream>> handler)
Executes the given SQLSELECT
statement which returns the results of the query as a read stream.SQLClient
SQLClient. queryStreamWithParams(String sql, JsonArray params, Handler<AsyncResult<SQLRowStream>> handler)
Executes the given SQLSELECT
statement which returns the results of the query as a read stream.SQLConnection
SQLConnection. queryStreamWithParams(String sql, JsonArray params, Handler<AsyncResult<SQLRowStream>> handler)
Executes the given SQLSELECT
statement which returns the results of the query as a read stream.SQLOperations
SQLOperations. queryStreamWithParams(String sql, JsonArray params, Handler<AsyncResult<SQLRowStream>> handler)
Executes the given SQLSELECT
statement which returns the results of the query as a read stream.
-