io.camunda.zeebe.snapshots.PersistableSnapshot Maven / Gradle / Ivy
The newest version!
/*
* 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 io.camunda.zeebe.scheduler.future.ActorFuture;
import java.nio.file.Path;
/** A volatile snapshot which can be persisted. */
public interface PersistableSnapshot {
/**
* Aborts the not yet persisted snapshot and removes all related data.
*
* @return a future which will be completed when the abort is done.
*/
ActorFuture abort();
/**
* Persists the snapshot with all his data and returns the representation of this snapshot.
*
* @return a future that will be completed with the persisted snapshot
*/
ActorFuture persist();
/**
* @return the snapshotId of the snapshot
*/
SnapshotId snapshotId();
/**
* Returns the pending snapshot's path.
*
* @return the path of the pending snapshot
*/
Path getPath();
}