Interface PreparedQuery<T>

  • All Superinterfaces:
    Query<T>

    public interface PreparedQuery<T>
    extends Query<T>
    A query for a prepared statement allowing parameterized execution of the query, this query will use a prepared statement.
    Author:
    Julien Viet
    • Method Detail

      • execute

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

        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