Uses of Class
org.apache.cassandra.dht.Bounds
-
Packages that use Bounds Package Description org.apache.cassandra.db org.apache.cassandra.dht -
-
Uses of Bounds in org.apache.cassandra.db
Method parameters in org.apache.cassandra.db with type arguments of type Bounds Modifier and Type Method Description int
ColumnFamilyStore. invalidateCounterCache(java.util.Collection<Bounds<Token>> boundsToInvalidate)
int
ColumnFamilyStore. invalidateRowCache(java.util.Collection<Bounds<Token>> boundsToInvalidate)
-
Uses of Bounds in org.apache.cassandra.dht
Methods in org.apache.cassandra.dht that return Bounds Modifier and Type Method Description static Bounds<PartitionPosition>
Bounds. makeRowBounds(Token left, Token right)
Compute a bounds of keys corresponding to a given bounds of token.Methods in org.apache.cassandra.dht that return types with arguments of type Bounds Modifier and Type Method Description static <T extends RingPosition<T>>
java.util.Set<Bounds<T>>Bounds. getNonOverlappingBounds(java.lang.Iterable<Bounds<T>> bounds)
Retrieves non-overlapping bounds for the list of input bounds Assume we have the following bounds (brackets representing left/right bound): [ ] [ ] [ ] [ ] [ ] [ ] This method will return the following bounds: [ ] [ ]Methods in org.apache.cassandra.dht with parameters of type Bounds Modifier and Type Method Description boolean
Bounds. intersects(Bounds<T> that)
boolean
Range. intersects(Bounds<T> that)
Method parameters in org.apache.cassandra.dht with type arguments of type Bounds Modifier and Type Method Description static <T extends RingPosition<T>>
java.util.Set<Bounds<T>>Bounds. getNonOverlappingBounds(java.lang.Iterable<Bounds<T>> bounds)
Retrieves non-overlapping bounds for the list of input bounds Assume we have the following bounds (brackets representing left/right bound): [ ] [ ] [ ] [ ] [ ] [ ] This method will return the following bounds: [ ] [ ]static <T extends RingPosition<T>>
booleanBounds. isInBounds(T token, java.lang.Iterable<Bounds<T>> bounds)
-