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

proj.zoie.store.ZoieStore Maven / Gradle / Ivy

There is a newer version: 3.3.0
Show newest version
package proj.zoie.store;

import java.io.IOException;

public interface ZoieStore {
	void put(long uid,byte[] data,String version) throws IOException;
	byte[] get(long uid) throws IOException;
	byte[][] get(long[] uids);
	String getVersion();
	void delete(long uid,String version) throws IOException;
	String getPersistedVersion() throws IOException;
	void open() throws IOException;
	void close() throws IOException;
	void commit() throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy