Package | Description |
---|---|
io.vertx.rxjava.ext.sql |
Modifier and Type | Field and Description |
---|---|
static io.vertx.lang.rx.TypeArg<SQLRowStream> |
SQLRowStream.__TYPE_ARG |
Modifier and Type | Method and 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() |
Modifier and Type | Method and Description |
---|---|
Observable<SQLRowStream> |
SQLConnection.queryStreamObservable(String sql)
Deprecated.
use
SQLConnection.rxQueryStream(java.lang.String) instead |
Observable<SQLRowStream> |
SQLClient.queryStreamObservable(String sql)
Deprecated.
use
SQLClient.rxQueryStream(java.lang.String) instead |
Observable<SQLRowStream> |
SQLConnection.queryStreamWithParamsObservable(String sql,
JsonArray params)
Deprecated.
|
Observable<SQLRowStream> |
SQLClient.queryStreamWithParamsObservable(String sql,
JsonArray params)
Deprecated.
|
Single<SQLRowStream> |
SQLConnection.rxQueryStream(String sql)
Executes the given SQL
SELECT statement which returns the results of the query as a read stream. |
Single<SQLRowStream> |
SQLClient.rxQueryStream(String sql)
Executes the given SQL
SELECT statement which returns the results of the query as a read stream. |
Single<SQLRowStream> |
SQLConnection.rxQueryStreamWithParams(String sql,
JsonArray params)
Executes the given SQL
SELECT statement which returns the results of the query as a read stream. |
Single<SQLRowStream> |
SQLClient.rxQueryStreamWithParams(String sql,
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,
Handler<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,
Handler<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,
Handler<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,
JsonArray params,
Handler<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,
JsonArray params,
Handler<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,
JsonArray params,
Handler<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.