com.revinate.henicea.migration.MigrationClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of henicea Show documentation
Show all versions of henicea Show documentation
Cassandra migrations for spring-boot apps
package com.revinate.henicea.migration;
import java.util.Optional;
import java.util.SortedSet;
public interface MigrationClient {
void init(Optional replicationFactor);
boolean acquireLock();
void releaseLock();
SortedSet getAppliedMigrations();
void runMigration(Migration migration);
}