com.instaclustr.cassandra.backup.impl.BucketService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of instaclustr-backup-restore Show documentation
Show all versions of instaclustr-backup-restore Show documentation
Backup and restoration tooling for Cassandra
package com.instaclustr.cassandra.backup.impl;
public interface BucketService extends AutoCloseable {
boolean doesExist(String bucketName);
default void createIfMissing(String bucketName) {
if (!doesExist(bucketName)) {
create(bucketName);
}
}
void create(String bucketName);
void delete(String bucketName);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy