io.camunda.zeebe.snapshots.SnapshotId Maven / Gradle / Ivy
/*
* Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH under
* one or more contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright ownership.
* Licensed under the Camunda License 1.0. You may not use this file
* except in compliance with the Camunda License 1.0.
*/
package io.camunda.zeebe.snapshots;
import java.util.Comparator;
/** Represents an identifier of an {@link PersistedSnapshot}. */
public interface SnapshotId extends Comparable {
/**
* @return the index of the snapshot
*/
long getIndex();
/**
* @return the term when the snapshot was taken
*/
long getTerm();
/**
* @return the processed position when the snapshot was taken
*/
long getProcessedPosition();
/**
* @return the exported position when the snapshot was taken
*/
long getExportedPosition();
/**
* The string representation of the snapshot identifier, looks like 'index-term-timestamp'.
*
* @return the string representation
*/
String getSnapshotIdAsString();
/**
* A snapshot is considered "lower" if its index is less then the other, if they are equal then
* the processed positions are compared, and then exported positions are compared. If they are the
* same then these snapshots are the same order-wise.
*
* @param other the snapshot to compare against
* @return -1 if {@code this} is less than {@code other}, 0 if they are the same, 1 if it is
* greater
*/
@Override
default int compareTo(final SnapshotId other) {
return Comparator.comparingLong(SnapshotId::getIndex)
.thenComparing(SnapshotId::getProcessedPosition)
.thenComparing(SnapshotId::getExportedPosition)
.compare(this, other);
}
}