Package io.vertx.reactivex.cassandra
Class ResultSet
- java.lang.Object
-
- io.vertx.reactivex.cassandra.ResultSet
-
- All Implemented Interfaces:
RxDelegate
public class ResultSet extends Object implements RxDelegate
It is likeAsyncResultSet, but adapted for Vert.x.NOTE: This class has been automatically generated from the
originalnon RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static 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()booleanequals(Object o)Future<ResultSet>fetchNextPage()com.datastax.oss.driver.api.core.cql.ColumnDefinitionsgetColumnDefinitions()ResultSetgetDelegate()com.datastax.oss.driver.api.core.cql.ExecutionInfogetExecutionInfo()inthashCode()booleanhasMorePages()static ResultSetnewInstance(ResultSet arg)com.datastax.oss.driver.api.core.cql.Rowone()intremaining()io.reactivex.Single<List<com.datastax.oss.driver.api.core.cql.Row>>rxAll()The method should not be used concurrently with others likefetchNextPage()orone().io.reactivex.Single<ResultSet>rxFetchNextPage()StringtoString()booleanwasApplied()
-
-
-
Method Detail
-
getDelegate
public ResultSet getDelegate()
- Specified by:
getDelegatein interfaceRxDelegate
-
remaining
public int remaining()
- Returns:
-
hasMorePages
public boolean hasMorePages()
- Returns:
-
rxFetchNextPage
public io.reactivex.Single<ResultSet> rxFetchNextPage()
- 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 io.reactivex.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:
-
-