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

org.yamcs.yarch.BucketDatabase Maven / Gradle / Ivy

There is a newer version: 5.10.7
Show newest version
package org.yamcs.yarch;

import java.io.IOException;
import java.util.List;

public interface BucketDatabase {
    Bucket createBucket(String bucketName) throws IOException;

    /**
     * Retrieve a bucket handler from the database.
     * 
     * @param bucketName
     * @return the bucket with the given name or null if it does not exist
     * @throws IOException
     */
    Bucket getBucket(String bucketName) throws IOException;

    List listBuckets() throws IOException;

    void deleteBucket(String bucketName) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy