org.apache.cassandra.hints.InputPosition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cassandra-all Show documentation
Show all versions of cassandra-all Show documentation
The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model.
package org.apache.cassandra.hints;
/**
* Marker interface for file positions as provided by the various ChecksummedDataReader implementations.
*/
public interface InputPosition
{
long subtract(InputPosition other);
}