Uses of Interface
org.apache.cassandra.db.SinglePartitionReadQuery
-
Packages that use SinglePartitionReadQuery Package Description org.apache.cassandra.db org.apache.cassandra.db.partitions org.apache.cassandra.service.pager -
-
Uses of SinglePartitionReadQuery in org.apache.cassandra.db
Classes in org.apache.cassandra.db with type parameters of type SinglePartitionReadQuery Modifier and Type Class Description static class
SinglePartitionReadQuery.Group<T extends SinglePartitionReadQuery>
Groups multiple single partition read queries.Classes in org.apache.cassandra.db that implement SinglePartitionReadQuery Modifier and Type Class Description class
SinglePartitionReadCommand
A read command that selects a (part of a) single partition.static class
SinglePartitionReadCommand.VirtualTableSinglePartitionReadCommand
Methods in org.apache.cassandra.db that return SinglePartitionReadQuery Modifier and Type Method Description static SinglePartitionReadQuery
SinglePartitionReadQuery. create(TableMetadata metadata, long nowInSec, DecoratedKey key, ColumnFilter columnFilter, ClusteringIndexFilter filter)
Creates a new read query on a single partition.static SinglePartitionReadQuery
SinglePartitionReadQuery. create(TableMetadata metadata, long nowInSec, ColumnFilter columnFilter, RowFilter rowFilter, DataLimits limits, DecoratedKey partitionKey, ClusteringIndexFilter clusteringIndexFilter)
Creates a new read query on a single partition.SinglePartitionReadQuery
SinglePartitionReadQuery. forPaging(Clustering<?> lastReturned, DataLimits limits)
Returns a newSinglePartitionReadQuery
suitable to paging from the last returned row.SinglePartitionReadQuery
SinglePartitionReadQuery. withUpdatedLimit(DataLimits newLimits)
Creates a newSinglePartitionReadQuery
with the specified limits.Methods in org.apache.cassandra.db that return types with arguments of type SinglePartitionReadQuery Modifier and Type Method Description static SinglePartitionReadQuery.Group<? extends SinglePartitionReadQuery>
SinglePartitionReadQuery. createGroup(TableMetadata metadata, long nowInSec, ColumnFilter columnFilter, RowFilter rowFilter, DataLimits limits, java.util.List<DecoratedKey> partitionKeys, ClusteringIndexFilter clusteringIndexFilter)
-
Uses of SinglePartitionReadQuery in org.apache.cassandra.db.partitions
Methods in org.apache.cassandra.db.partitions with parameters of type SinglePartitionReadQuery Modifier and Type Method Description static RowIterator
PartitionIterators. getOnlyElement(PartitionIterator iter, SinglePartitionReadQuery query)
-
Uses of SinglePartitionReadQuery in org.apache.cassandra.service.pager
Classes in org.apache.cassandra.service.pager with type parameters of type SinglePartitionReadQuery Modifier and Type Class Description class
MultiPartitionPager<T extends SinglePartitionReadQuery>
Pager over a list of SinglePartitionReadQuery.Methods in org.apache.cassandra.service.pager that return SinglePartitionReadQuery Modifier and Type Method Description protected SinglePartitionReadQuery
SinglePartitionPager. nextPageReadQuery(int pageSize)
Constructors in org.apache.cassandra.service.pager with parameters of type SinglePartitionReadQuery Constructor Description SinglePartitionPager(SinglePartitionReadQuery query, PagingState state, ProtocolVersion protocolVersion)
-