Uses of Class
org.apache.cassandra.service.pager.PagingState
-
Packages that use PagingState Package Description org.apache.cassandra.cql3 org.apache.cassandra.db org.apache.cassandra.service.pager -
-
Uses of PagingState in org.apache.cassandra.cql3
Methods in org.apache.cassandra.cql3 that return PagingState Modifier and Type Method Description PagingStateQueryOptions. getPagingState()The paging state for this query, or null if not relevant.PagingStateResultSet.ResultMetadata. getPagingState()Methods in org.apache.cassandra.cql3 with parameters of type PagingState Modifier and Type Method Description static QueryOptionsQueryOptions. create(ConsistencyLevel consistency, java.util.List<java.nio.ByteBuffer> values, boolean skipMetadata, int pageSize, PagingState pagingState, ConsistencyLevel serialConsistency, ProtocolVersion version, java.lang.String keyspace)static QueryOptionsQueryOptions. create(ConsistencyLevel consistency, java.util.List<java.nio.ByteBuffer> values, boolean skipMetadata, int pageSize, PagingState pagingState, ConsistencyLevel serialConsistency, ProtocolVersion version, java.lang.String keyspace, long timestamp, int nowInSeconds)voidResultSet.ResultMetadata. setHasMorePages(PagingState pagingState)Constructors in org.apache.cassandra.cql3 with parameters of type PagingState Constructor Description ResultMetadata(java.util.List<ColumnSpecification> names, PagingState pagingState) -
Uses of PagingState in org.apache.cassandra.db
Methods in org.apache.cassandra.db with parameters of type PagingState Modifier and Type Method Description default QueryPagerPartitionRangeReadQuery. getPager(PagingState pagingState, ProtocolVersion protocolVersion)QueryPagerReadQuery. getPager(PagingState pagingState, ProtocolVersion protocolVersion)Returns a pager for the query.default SinglePartitionPagerSinglePartitionReadQuery. getPager(PagingState pagingState, ProtocolVersion protocolVersion)QueryPagerSinglePartitionReadQuery.Group. getPager(PagingState pagingState, ProtocolVersion protocolVersion) -
Uses of PagingState in org.apache.cassandra.service.pager
Methods in org.apache.cassandra.service.pager that return PagingState Modifier and Type Method Description static PagingStatePagingState. deserialize(java.nio.ByteBuffer bytes, ProtocolVersion protocolVersion)It's possible to receive a V3 paging state on a V4 client session, and vice versa - so we cannot blindly rely on the protocol version provided.PagingStateAggregationQueryPager. state()PagingStateMultiPartitionPager. state()PagingStatePartitionRangeQueryPager. state()PagingStateQueryPager. state()Get the current state of the pager.PagingStateSinglePartitionPager. state()Constructors in org.apache.cassandra.service.pager with parameters of type PagingState Constructor Description MultiPartitionPager(SinglePartitionReadQuery.Group<T> group, PagingState state, ProtocolVersion protocolVersion)PartitionRangeQueryPager(PartitionRangeReadQuery query, PagingState state, ProtocolVersion protocolVersion)SinglePartitionPager(SinglePartitionReadQuery query, PagingState state, ProtocolVersion protocolVersion)
-