Interface Query<T>

    • Method Detail

      • execute

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

        <R> Query<SqlResult<R>> collecting​(java.util.stream.Collector<Row,​?,​R> collector)
        Use the specified collector for collecting the query result to <R>.
      • mapping

        <U> Query<RowSet<U>> mapping​(java.util.function.Function<Row,​U> mapper)
        Use the specified mapper for mapping Row to <U>.