Package | Description |
---|---|
io.vertx.rxjava.ext.sql |
Modifier and Type | Field and Description |
---|---|
static TypeArg<SQLRowStream> |
SQLRowStream.__TYPE_ARG |
Modifier and Type | Method and Description |
---|---|
SQLRowStream |
SQLRowStream.endHandler(io.vertx.core.Handler<Void> endHandler) |
SQLRowStream |
SQLRowStream.exceptionHandler(io.vertx.core.Handler<Throwable> handler) |
SQLRowStream |
SQLRowStream.handler(io.vertx.core.Handler<io.vertx.core.json.JsonArray> handler) |
static SQLRowStream |
SQLRowStream.newInstance(io.vertx.ext.sql.SQLRowStream arg) |
SQLRowStream |
SQLRowStream.pause() |
SQLRowStream |
SQLRowStream.resultSetClosedHandler(io.vertx.core.Handler<Void> handler)
Event handler when a resultset is closed.
|
SQLRowStream |
SQLRowStream.resume() |
Modifier and Type | Method and Description |
---|---|
rx.Observable<SQLRowStream> |
SQLConnection.queryStreamObservable(String sql)
Deprecated.
use
SQLConnection.rxQueryStream(java.lang.String) instead |
rx.Observable<SQLRowStream> |
SQLClient.queryStreamObservable(String sql)
Deprecated.
use
SQLClient.rxQueryStream(java.lang.String) instead |
rx.Observable<SQLRowStream> |
SQLConnection.queryStreamWithParamsObservable(String sql,
io.vertx.core.json.JsonArray params)
Deprecated.
|
rx.Observable<SQLRowStream> |
SQLClient.queryStreamWithParamsObservable(String sql,
io.vertx.core.json.JsonArray params)
Deprecated.
|
rx.Single<SQLRowStream> |
SQLConnection.rxQueryStream(String sql)
Executes the given SQL
SELECT statement which returns the results of the query as a read stream. |
rx.Single<SQLRowStream> |
SQLClient.rxQueryStream(String sql)
Executes the given SQL
SELECT statement which returns the results of the query as a read stream. |
rx.Single<SQLRowStream> |
SQLConnection.rxQueryStreamWithParams(String sql,
io.vertx.core.json.JsonArray params)
Executes the given SQL
SELECT statement which returns the results of the query as a read stream. |
rx.Single<SQLRowStream> |
SQLClient.rxQueryStreamWithParams(String sql,
io.vertx.core.json.JsonArray params)
Executes the given SQL
SELECT statement which returns the results of the query as a read stream. |
Modifier and Type | Method and Description |
---|---|
SQLConnection |
SQLConnection.queryStream(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<SQLRowStream>> handler)
Executes the given SQL
SELECT statement which returns the results of the query as a read stream. |
SQLClient |
SQLClient.queryStream(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<SQLRowStream>> handler)
Executes the given SQL
SELECT statement which returns the results of the query as a read stream. |
SQLOperations |
SQLOperations.queryStream(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<SQLRowStream>> handler)
Executes the given SQL
SELECT statement which returns the results of the query as a read stream. |
SQLConnection |
SQLConnection.queryStreamWithParams(String sql,
io.vertx.core.json.JsonArray params,
io.vertx.core.Handler<io.vertx.core.AsyncResult<SQLRowStream>> handler)
Executes the given SQL
SELECT statement which returns the results of the query as a read stream. |
SQLClient |
SQLClient.queryStreamWithParams(String sql,
io.vertx.core.json.JsonArray params,
io.vertx.core.Handler<io.vertx.core.AsyncResult<SQLRowStream>> handler)
Executes the given SQL
SELECT statement which returns the results of the query as a read stream. |
SQLOperations |
SQLOperations.queryStreamWithParams(String sql,
io.vertx.core.json.JsonArray params,
io.vertx.core.Handler<io.vertx.core.AsyncResult<SQLRowStream>> handler)
Executes the given SQL
SELECT statement which returns the results of the query as a read stream. |
Copyright © 2023 Eclipse. All rights reserved.