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​(Collector<Row,​?,​R> collector)
        Use the specified collector for collecting the query result to <R>.