thredds.inventory.StoreKeyValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdm Show documentation
Show all versions of cdm Show documentation
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