Uses of Class
org.apache.cassandra.db.Digest
-
Packages that use Digest Package Description org.apache.cassandra.db org.apache.cassandra.db.marshal org.apache.cassandra.db.partitions org.apache.cassandra.db.rows -
-
Uses of Digest in org.apache.cassandra.db
Methods in org.apache.cassandra.db that return Digest Modifier and Type Method Description static Digest
Digest. forReadResponse()
static Digest
Digest. forRepairedDataTracking()
static Digest
Digest. forSchema()
static Digest
Digest. forValidator()
Digest
Digest. update(byte[] input, int offset, int len)
Digest
Digest. update(java.nio.ByteBuffer input)
Update the digest with the bytes from the supplied buffer.Digest
Digest. update(java.nio.ByteBuffer input, int pos, int len)
Update the digest with the bytes sliced from the supplied buffer.<V> Digest
Digest. update(V input, ValueAccessor<V> accessor)
Digest
Digest. updateWithBoolean(boolean val)
Digest
Digest. updateWithByte(int val)
<V> Digest
Digest. updateWithCounterContext(V context, ValueAccessor<V> accessor)
Update the digest with the content of a counter context.Digest
Digest. updateWithInt(int val)
Digest
Digest. updateWithLong(long val)
Methods in org.apache.cassandra.db with parameters of type Digest Modifier and Type Method Description default void
ClusteringPrefix. digest(Digest digest)
Adds the data of this clustering prefix to the provided Digest instance.void
Columns. digest(Digest digest)
void
DeletionTime. digest(Digest digest)
void
LivenessInfo. digest(Digest digest)
Adds this liveness information to the provided digest. -
Uses of Digest in org.apache.cassandra.db.marshal
Methods in org.apache.cassandra.db.marshal with parameters of type Digest Modifier and Type Method Description void
ByteArrayAccessor. digest(byte[] value, int offset, int size, Digest digest)
void
ByteBufferAccessor. digest(java.nio.ByteBuffer value, int offset, int size, Digest digest)
void
ValueAccessor. digest(V value, int offset, int size, Digest digest)
updates {@param digest} with {@param size} bytes from the contents of {@param value} starting at offset {@param offset}default void
ValueAccessor. digest(V value, Digest digest)
updates {@param digest} with te contents of {@param value} -
Uses of Digest in org.apache.cassandra.db.partitions
Methods in org.apache.cassandra.db.partitions with parameters of type Digest Modifier and Type Method Description static void
UnfilteredPartitionIterators. digest(UnfilteredPartitionIterator iterator, Digest digest, int version)
Digests the the provided iterator. -
Uses of Digest in org.apache.cassandra.db.rows
Methods in org.apache.cassandra.db.rows with parameters of type Digest Modifier and Type Method Description void
AbstractCell. digest(Digest digest)
void
AbstractRow. digest(Digest digest)
void
CellPath. digest(Digest digest)
abstract void
ColumnData. digest(Digest digest)
Adds the data to the provided digest.static void
ColumnData. digest(Digest digest, ColumnData cd)
void
ComplexColumnData. digest(Digest digest)
void
RangeTombstoneBoundaryMarker. digest(Digest digest)
void
RangeTombstoneBoundMarker. digest(Digest digest)
void
Row.Deletion. digest(Digest digest)
static void
RowIterators. digest(RowIterator iterator, Digest digest)
void
Unfiltered. digest(Digest digest)
Digest the atom using the providedDigest
.static void
UnfilteredRowIterators. digest(UnfilteredRowIterator iterator, Digest digest, int version)
Digests the partition represented by the provided iterator.
-