Class PreparedQuery<T>


  • public class PreparedQuery<T>
    extends Query<T>
    A query for a prepared statement allowing parameterized execution of the query, this query will use a prepared statement.

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

    • Constructor Detail

      • PreparedQuery

        public PreparedQuery​(PreparedQuery delegate)
      • PreparedQuery

        public PreparedQuery​(Object delegate,
                             TypeArg<T> typeArg_0)
    • Method Detail

      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Query<T>
      • execute

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

        public void execute()
        Execute the query.
        Overrides:
        execute in class Query<T>
      • rxExecute

        public io.reactivex.Single<T> rxExecute()
        Execute the query.
        Overrides:
        rxExecute in class Query<T>
        Returns:
      • execute

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

        public void execute​(Tuple tuple)
        Execute the query.
        Parameters:
        tuple -
      • rxExecute

        public io.reactivex.Single<T> rxExecute​(Tuple tuple)
        Execute the query.
        Parameters:
        tuple -
        Returns:
      • executeBatch

        public void executeBatch​(List<Tuple> batch,
                                 Handler<AsyncResult<T>> handler)
        Execute the query with a batch of tuples.
        Parameters:
        batch - the batch of tuples
        handler - the handler receiving the response
      • executeBatch

        public void executeBatch​(List<Tuple> batch)
        Execute the query with a batch of tuples.
        Parameters:
        batch - the batch of tuples
      • rxExecuteBatch

        public io.reactivex.Single<T> rxExecuteBatch​(List<Tuple> batch)
        Execute the query with a batch of tuples.
        Parameters:
        batch - the batch of tuples
        Returns: