Interface ResultSet


  • public interface ResultSet
    It is like AsyncResultSet, but adapted for Vert.x.
    Author:
    Pavel Drankou, Thomas Segismont
    • Method Detail

      • all

        Future<List<com.datastax.oss.driver.api.core.cql.Row>> all()
        The method should not be used concurrently with others like fetchNextPage() or one(). This may lead to unexpected result.
        Returns:
        a future notified all the rows are fetched
      • getColumnDefinitions

        com.datastax.oss.driver.api.core.cql.ColumnDefinitions getColumnDefinitions()
        See Also:
        AsyncPagingIterable.getColumnDefinitions()
      • getExecutionInfo

        com.datastax.oss.driver.api.core.cql.ExecutionInfo getExecutionInfo()
        See Also:
        AsyncPagingIterable.getExecutionInfo()
      • remaining

        int remaining()
        See Also:
        AsyncPagingIterable.remaining()
      • currentPage

        Iterable<com.datastax.oss.driver.api.core.cql.Row> currentPage()
        See Also:
        AsyncPagingIterable.currentPage()
      • one

        com.datastax.oss.driver.api.core.cql.Row one()
        See Also:
        AsyncPagingIterable.one()
      • hasMorePages

        boolean hasMorePages()
        See Also:
        AsyncPagingIterable.hasMorePages()
      • wasApplied

        boolean wasApplied()
        See Also:
        AsyncResultSet.wasApplied()