Class Query<T>

  • Direct Known Subclasses:
    PreparedQuery

    public class Query<T>
    extends Object
    A query.

    NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.

    • Field Detail

      • __typeArg_0

        public final TypeArg<T> __typeArg_0
    • Constructor Detail

      • Query

        public Query​(Query delegate)
    • Method Detail

      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • getDelegate

        public Query getDelegate()
      • execute

        public void execute​(Handler<AsyncResult<T>> handler)
        Execute the query.
        Parameters:
        handler - the handler receiving the response
      • execute

        public void execute()
        Execute the query.
      • rxExecute

        public io.reactivex.Single<T> rxExecute()
        Execute the query.
        Returns:
      • mapping

        public <U> Query<RowSet<U>> mapping​(Function<Row,​U> mapper)
        Use the specified mapper for mapping Row to .
        Parameters:
        mapper -
        Returns:
      • newInstance

        public static <T> Query<T> newInstance​(Query arg)
      • newInstance

        public static <T> Query<T> newInstance​(Query arg,
                                               TypeArg<T> __typeArg_T)