Package io.vertx.rxjava.sqlclient
Class Query<T>
- java.lang.Object
-
- io.vertx.rxjava.sqlclient.Query<T>
-
- Direct Known Subclasses:
PreparedQuery
public class Query<T> extends Object
A query. NOTE: This class has been automatically generated from theoriginal
non RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<Query>
__TYPE_ARG
TypeArg<T>
__typeArg_0
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
void
execute()
Execute the query.void
execute(io.vertx.core.Handler<io.vertx.core.AsyncResult<T>> handler)
Execute the query.io.vertx.sqlclient.Query
getDelegate()
int
hashCode()
<U> Query<RowSet<U>>
mapping(Function<Row,U> mapper)
static <T> Query<T>
newInstance(io.vertx.sqlclient.Query arg)
static <T> Query<T>
newInstance(io.vertx.sqlclient.Query arg, TypeArg<T> __typeArg_T)
rx.Single<T>
rxExecute()
Execute the query.String
toString()
-
-
-
Method Detail
-
getDelegate
public io.vertx.sqlclient.Query getDelegate()
-
execute
public void execute(io.vertx.core.Handler<io.vertx.core.AsyncResult<T>> handler)
Execute the query.- Parameters:
handler
- the handler receiving the response
-
execute
public void execute()
Execute the query.
-
rxExecute
public rx.Single<T> rxExecute()
Execute the query.- Returns:
-
newInstance
public static <T> Query<T> newInstance(io.vertx.sqlclient.Query arg)
-
-