Package io.vertx.reactivex.cassandra
Class ResultSet
- java.lang.Object
-
- io.vertx.reactivex.cassandra.ResultSet
-
-
Field Summary
Fields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<ResultSet>
__TYPE_ARG
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Future<List<com.datastax.oss.driver.api.core.cql.Row>>
all()
The method should not be used concurrently with others likefetchNextPage()
orone()
.Iterable<com.datastax.oss.driver.api.core.cql.Row>
currentPage()
boolean
equals(Object o)
Future<ResultSet>
fetchNextPage()
com.datastax.oss.driver.api.core.cql.ColumnDefinitions
getColumnDefinitions()
ResultSet
getDelegate()
com.datastax.oss.driver.api.core.cql.ExecutionInfo
getExecutionInfo()
int
hashCode()
boolean
hasMorePages()
static ResultSet
newInstance(ResultSet arg)
com.datastax.oss.driver.api.core.cql.Row
one()
int
remaining()
Single<List<com.datastax.oss.driver.api.core.cql.Row>>
rxAll()
The method should not be used concurrently with others likefetchNextPage()
orone()
.Single<ResultSet>
rxFetchNextPage()
String
toString()
boolean
wasApplied()
-
-
-
Field Detail
-
__TYPE_ARG
public static final io.vertx.lang.rx.TypeArg<ResultSet> __TYPE_ARG
-
-
Method Detail
-
getDelegate
public ResultSet getDelegate()
-
remaining
public int remaining()
- Returns:
-
hasMorePages
public boolean hasMorePages()
- Returns:
-
wasApplied
public boolean wasApplied()
- Returns:
-
all
public Future<List<com.datastax.oss.driver.api.core.cql.Row>> 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
-
rxAll
public Single<List<com.datastax.oss.driver.api.core.cql.Row>> rxAll()
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
public com.datastax.oss.driver.api.core.cql.ColumnDefinitions getColumnDefinitions()
- Returns:
-
getExecutionInfo
public com.datastax.oss.driver.api.core.cql.ExecutionInfo getExecutionInfo()
- Returns:
-
currentPage
public Iterable<com.datastax.oss.driver.api.core.cql.Row> currentPage()
- Returns:
-
one
public com.datastax.oss.driver.api.core.cql.Row one()
- Returns:
-
-