Package io.vertx.reactivex.sqlclient
Class Query<T>
- java.lang.Object
-
- io.vertx.reactivex.sqlclient.Query<T>
-
- All Implemented Interfaces:
RxDelegate
- Direct Known Subclasses:
PreparedQuery
public class Query<T> extends Object implements RxDelegate
A query.NOTE: This class has been automatically generated from the
original
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)
Future<T>
execute()
Execute the query.Query
getDelegate()
int
hashCode()
<U> Query<RowSet<U>>
mapping(Function<Row,U> mapper)
static <T> Query<T>
newInstance(Query arg)
static <T> Query<T>
newInstance(Query arg, TypeArg<T> __typeArg_T)
io.reactivex.Single<T>
rxExecute()
Execute the query.String
toString()
-
-
-
Method Detail
-
getDelegate
public Query getDelegate()
- Specified by:
getDelegate
in interfaceRxDelegate
-
rxExecute
public io.reactivex.Single<T> rxExecute()
Execute the query.- Returns:
- a future notified with the result
-
-