Class 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 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
      • execute

        public Future<T> execute()
        Execute the query.
        Returns:
        a future notified with the result
      • rxExecute

        public io.reactivex.Single<T> rxExecute()
        Execute the query.
        Returns:
        a future notified with the result
      • 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)