Interface ResultSet
public interface ResultSet
It is like
AsyncResultSet, but adapted for Vert.x.- Author:
- Pavel Drankou, Thomas Segismont
-
Method Summary
Modifier and TypeMethodDescriptionall()The method should not be used concurrently with others likefetchNextPage()orone().Iterable<com.datastax.oss.driver.api.core.cql.Row> com.datastax.oss.driver.api.core.cql.ColumnDefinitionscom.datastax.oss.driver.api.core.cql.ExecutionInfobooleancom.datastax.oss.driver.api.core.cql.Rowone()intboolean
-
Method Details
-
all
The method should not be used concurrently with others likefetchNextPage()orone(). 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:
-
getExecutionInfo
com.datastax.oss.driver.api.core.cql.ExecutionInfo getExecutionInfo()- See Also:
-
remaining
int remaining()- See Also:
-
currentPage
Iterable<com.datastax.oss.driver.api.core.cql.Row> currentPage()- See Also:
-
one
com.datastax.oss.driver.api.core.cql.Row one()- See Also:
-
hasMorePages
boolean hasMorePages()- See Also:
-
fetchNextPage
- Throws:
IllegalStateException- See Also:
-
wasApplied
boolean wasApplied()- See Also:
-