Uses of Interface
org.apache.cassandra.utils.BiLongAccumulator
-
Packages that use BiLongAccumulator Package Description org.apache.cassandra.db.rows org.apache.cassandra.utils.btree -
-
Uses of BiLongAccumulator in org.apache.cassandra.db.rows
Methods in org.apache.cassandra.db.rows with parameters of type BiLongAccumulator Modifier and Type Method Description <A> long
BTreeRow. accumulate(BiLongAccumulator<A,ColumnData> accumulator, A arg, long initialValue)
<A> long
BTreeRow. accumulate(BiLongAccumulator<A,ColumnData> accumulator, A arg, java.util.Comparator<ColumnData> comparator, ColumnData from, long initialValue)
<A> long
ComplexColumnData. accumulate(BiLongAccumulator<A,Cell<?>> accumulator, A arg, long initialValue)
<A> long
Row. accumulate(BiLongAccumulator<A,ColumnData> accumulator, A arg, long initialValue)
<A> long
Row. accumulate(BiLongAccumulator<A,ColumnData> accumulator, A arg, java.util.Comparator<ColumnData> comparator, ColumnData from, long initialValue)
-
Uses of BiLongAccumulator in org.apache.cassandra.utils.btree
Methods in org.apache.cassandra.utils.btree with parameters of type BiLongAccumulator Modifier and Type Method Description static <V,A>
longBTree. accumulate(java.lang.Object[] btree, BiLongAccumulator<A,V> accumulator, A arg, long initialValue)
static <V,A>
longBTree. accumulate(java.lang.Object[] btree, BiLongAccumulator<A,V> accumulator, A arg, java.util.Comparator<V> comparator, V from, long initialValue)
Walk the btree and accumulate a long value using the supplied accumulator function.
-