public interface ResultSet
ResultSet, but adapted for Vert.x.| Modifier and Type | Method and Description |
|---|---|
ResultSet |
all(Handler<AsyncResult<List<com.datastax.driver.core.Row>>> handler) |
ResultSet |
fetchMoreResults(Handler<AsyncResult<Void>> handler) |
int |
getAvailableWithoutFetching() |
com.datastax.driver.core.ColumnDefinitions |
getColumnDefinitions() |
boolean |
isExhausted() |
boolean |
isFullyFetched() |
ResultSet |
one(Handler<AsyncResult<com.datastax.driver.core.Row>> handler) |
boolean |
wasApplied() |
boolean isExhausted()
PagingIterable.isExhausted()boolean isFullyFetched()
PagingIterable.isFullyFetched()int getAvailableWithoutFetching()
PagingIterable.getAvailableWithoutFetching()ResultSet fetchMoreResults(Handler<AsyncResult<Void>> handler)
handler - handler called when result is fetchedPagingIterable.fetchMoreResults()ResultSet one(Handler<AsyncResult<com.datastax.driver.core.Row>> handler)
handler - handler called when one row is fetchedResultSet.one()ResultSet all(Handler<AsyncResult<List<com.datastax.driver.core.Row>>> handler)
handler - handler called when all the rows is fetchedPagingIterable.all()com.datastax.driver.core.ColumnDefinitions getColumnDefinitions()
ResultSet.getColumnDefinitions()boolean wasApplied()
ResultSet.wasApplied()Copyright © 2018 Eclipse. All rights reserved.