All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.cassandra.db.RangeTombstone Maven / Gradle / Ivy

There is a newer version: 3.11.12.3
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.cassandra.db;

import java.util.Objects;

import org.apache.cassandra.db.rows.RangeTombstoneMarker;

/**
 * A range tombstone is a tombstone that covers a slice/range of rows.
 * 

* Note that in most of the storage engine, a range tombstone is actually represented by its separated * opening and closing bound, see {@link RangeTombstoneMarker}. So in practice, this is only used when * full partitions are materialized in memory in a {@code Partition} object, and more precisely through * the use of a {@code RangeTombstoneList} in a {@code DeletionInfo} object. */ public class RangeTombstone { private final Slice slice; private final DeletionTime deletion; public RangeTombstone(Slice slice, DeletionTime deletion) { this.slice = slice; this.deletion = deletion; } /** * The slice of rows that is deleted by this range tombstone. * * @return the slice of rows that is deleted by this range tombstone. */ public Slice deletedSlice() { return slice; } /** * The deletion time for this (range) tombstone. * * @return the deletion time for this range tombstone. */ public DeletionTime deletionTime() { return deletion; } public String toString(ClusteringComparator comparator) { return slice.toString(comparator) + '@' + deletion; } @Override public boolean equals(Object other) { if(!(other instanceof RangeTombstone)) return false; RangeTombstone that = (RangeTombstone)other; return this.deletedSlice().equals(that.deletedSlice()) && this.deletionTime().equals(that.deletionTime()); } @Override public int hashCode() { return Objects.hash(deletedSlice(), deletionTime()); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy