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
originalnon RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<Query>__TYPE_ARGTypeArg<T>__typeArg_0
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)Future<T>execute()Execute the query.QuerygetDelegate()inthashCode()<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.StringtoString()
-
-
-
Method Detail
-
getDelegate
public Query getDelegate()
- Specified by:
getDelegatein interfaceRxDelegate
-
rxExecute
public io.reactivex.Single<T> rxExecute()
Execute the query.- Returns:
- a future notified with the result
-
-