Class PreparedQuery<T>

  • All Implemented Interfaces:
    RxDelegate

    public class PreparedQuery<T>
    extends Query<T>
    implements RxDelegate
    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 Future<T> execute()
        Execute the query.
        Overrides:
        execute in class Query<T>
        Returns:
        a future notified with the result
      • rxExecute

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

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

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

        public Future<T> executeBatch​(List<Tuple> batch)
        Execute the query with a batch of tuples.
        Parameters:
        batch - the batch of tuples
        Returns:
        a future notified with the result
      • 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:
        a future notified with the result