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

thredds.inventory.StoreKeyValue Maven / Gradle / Ivy

Go to download

The NetCDF-Java Library is a Java interface to NetCDF files, as well as to many other types of scientific data formats.

The newest version!
package thredds.inventory;

/**
 * Abstraction for object persistance using key/value stores.
 *
 * @author caron
 * @since 7/18/13
 */
public interface StoreKeyValue {

  public byte[] getBytes(String key);
  public void put(String key, byte[] value);
  public void close();

  public interface Factory {
    public StoreKeyValue open(String name);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy